v1
latestOpenAPI 3.0.12026-07-141671231.8 MBCustomers
List contacts of a customer
List contacts of a customer
ℹ️ This endpoint requires one of the following scopes: customers:all, customers:readonly
get/api/external/v2/customers/{customer_id}/contacts
Path parameters
customer_idinteger required
Query parameters
cursorstring
Example:dXBkYXRlZF9hdDoxNjc0MTIzNDU2
Cursor for pagination. Use this to fetch the next set of results. The cursor is an opaque string returned in the previous response's metadata. Leave empty for the first request.
limitinteger
Example:20
Number of items to return per request. Defaults to 20 if not specified. Must be between 1 and 100.
sortstring
You can choose to sort items on specific attributes Sort field may be prefixed with - for descending order. Example : id will sort by ascending order, -id will sort by descending order. Available fields : id
Response
The list of contacts of a customer
Example response
{
"has_more": true,
"next_cursor": "dXBkYXRlZF9hdDoxNjc0MTIzNDU2",
"items": [
{
"id": 421,
"first_name": "Jane",
"last_name": "Doe",
"role": "accountant",
"email": "jane.doe@example.com",
"created_at": "2023-08-30T10:08:08.146343Z",
"updated_at": "2023-08-30T10:08:08.146343Z"
}
]
}