Get Contacts By BusinessId
GET/contacts/business/:businessId
Get Contacts By BusinessId
Request
Version stringrequired
API Version
Available options
v3businessId stringrequired
Business Id
limit string
Maximum number of records per page (up to 100, default 25)
locationId stringrequired
Location Id
skip string
Number of records to skip
query string
Search query (name, email, phone)
startAfter string[]
Cursor for pagination (comma-separated name,id pair)
Successful response
- application/json
- Schema
- Example (auto)
Schema
contactsobject[]
List of contacts associated with the business
countnumber
Total number of contacts matching the query
{
"contacts": [
{
"id": "ocQHyuzHvysMo5N5VsXc",
"locationId": "C2QujeCh8ZnC7al2InWR",
"country": "DE",
"source": "xyz form",
"dateAdded": "2020-10-29T09:31:30.255Z"
}
],
"count": 10
}