PropertyRadar Public API
PropertyRadar API (5.0.0.0)
About Lists
View and manage potential customers and properties, by sorting properties into organized groups, called lists
PropertyRadar supports 3 different kinds of lists, and each type can be monitored or unmonitored.
Dynamic lists
Dynamic lists are created from a Criteria object, and are updated automatically when monitored. If a Dynamic list is unmonitored, it is updated whenever you make a call to view the items in the list, such as Properties from Criteria (using InList), or View list items.
Static lists
Static Lists are created by adding properties to a list using Add items to list. They do not have search criteria. Properties on Static lists only change when you add or remove properties, or set up an automation to do so.
Import lists
With import lists, you provide raw unmatched data such as addresses or emails via Match and import to list, and we match that data with our records and create a list of matching records.
A list of fields or fieldsets the client would like returned from the service. Fields can be suppressed by prepending "-"
Comma-delimited list of directions (asc or desc) for fields provided in Sort param. For instance if you were sorting on A ascending first, then on B descending (in cases of multiple identical values of A) you would specify &Sort=A,B&Dir=asc,desc
- https://api.propertyradar.com/v1/integrations/webhooks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.propertyradar.com/v1/integrations/webhooks?Fields=WebhookID&Limit=10&Sort=WebhookID&Dir=desc&Start=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "results": [ { … } ] }
Webhook URL
If present, will be sent to the webhook as the bearer security token in the HTTP Authorization header
- https://api.propertyradar.com/v1/integrations/webhooks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.propertyradar.com/v1/integrations/webhooks \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"HookUrl": "https://hooks.zapier.com/hooks/standard/1234/a1b2c3d4e5/",
"WebhookName": "Zap Trigger",
"Secret": "1a2b3c4d",
"Lists": [
123,
456
]
}'{ "results": [ { … } ] }
- https://api.propertyradar.com/v1/integrations/webhooks/{WebhookID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://api.propertyradar.com/v1/integrations/webhooks/123 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "deleteCount": 1 }