Get a contact
GET/api/contacts/:id
- crm.view: allows view resources.
Here the dedicated support page.
Request
Path Parameters
id stringrequired
Header Parameters
Wethod-Company stringrequired
The company you want to interact with
Wethod-Version stringrequired
The API version you want to use
Responses
- 200
- 403
- 404
Returns the requested contact.
- application/json
- Schema
- Example (from schema)
Schema
id integerrequired
Possible values: >= 1
created_at date-timerequired
updated_at date-timerequired
client_business_unit_id integer
Possible values: >= 1
ID of the client business unit
client_id integerrequired
Possible values: >= 1
ID of the client
email stringrequired
Possible values: <= 150 characters
name stringrequired
Possible values: <= 100 characters
surname stringrequired
Possible values: <= 100 characters
role string
Possible values: <= 75 characters
notes string
linkedin string
Possible values: <= 250 characters
description string
telephone string
Possible values: <= 100 characters
{
"id": 1,
"created_at": "2024-12-20T14:44:08.136Z",
"updated_at": "2024-12-20T14:44:08.136Z",
"client_business_unit_id": 1,
"client_id": 1,
"email": "string",
"name": "string",
"surname": "string",
"role": "string",
"notes": "string",
"linkedin": "string",
"description": "string",
"telephone": "string"
}
Forbidden
Not found
Loading...