v1
latestOpenAPI 3.0.02026-07-26155147.1 KBContact Requests
List all contact requests
Returns a list of the contact requests in a given period or for a specific property, if no parameters are provided all the contact requests will be returned
get/contact_requests
Query parameters
pageinteger
Content's page
limitinteger
Max results per page (Maximum: 50)
happened_afterstring date-time
Contact requests created after the given date
happened_beforestring date-time
Contact requests created before the given date
property_idstring
The ID of a property to retrieve the contact requests for
Response
Successful contact requests list request
Example response
{
"pagination": {
"limit": 20,
"page": 1,
"total": 1
},
"content": [
{
"id": 123,
"name": "John Smith",
"phone": "5559090909",
"email": "mail@example.com",
"contact_id": 123,
"property_id": "EB-XXXX01",
"message": "I'm interested in this property. Please contact me.",
"source": "mydomain.com",
"happened_at": "2020-03-01T23:26:53.402Z"
}
]
}