Get all contacts
GET
/crm/contactsRequest
Query Params
limit
integer
optional
The number of objects to return
Example:
50
offset
integer
optional
The number of objects to skip
Example:
0
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
success
boolean
optional
contacts
array[object (Contact) {11}]
optional
id
string <uuid>
read-onlyoptional
creatorId
string <uuid>
read-onlyoptional
lastName
string | null
optional
<= 255 characters
firstName
string
optional
<= 255 characters
middleName
string | null
optional
<= 255 characters
organizations
array[string <uuid>]
optional
emails
array[object (ContactEmail) {2}]
optional
phones
array[object (ContactPhone) {2}]
optional
tags
array[integer]
optional
createdAt
string <date-time>
optional
updatedAt
string <date-time>
read-onlyoptional
Example
{
"success": true,
"contacts": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"creatorId": "688ebf54-d343-4104-8711-82c2feac534a",
"lastName": "string",
"firstName": "string",
"middleName": "string",
"organizations": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"emails": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"email": "user@example.com"
}
],
"phones": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"phone": "string"
}
],
"tags": [
0
],
"createdAt": "2019-08-24T14:15:22.123Z",
"updatedAt": "2019-08-24T14:15:22.123Z"
}
]
}
Last modified: 8 months ago