Skip to main content
GET
/
api
/
contacts
/
{id}
Get contact by id
curl --request GET \
  --url https://your-instance.example.com/api/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phoneNumber": "<string>",
    "email": "<string>",
    "status": "<string>",
    "pipelineId": "<string>",
    "pipelineStage": "<string>",
    "organizationId": "<string>",
    "userId": "<string>",
    "createdBy": "<string>",
    "assignees": [
      "<unknown>"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Contact returned

success
enum<boolean>
required
Available options:
true
data
object
required