Create Contact
Create a new contact in your organisation.
Endpoint
POST /clients/{client_uuid}/contacts
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| name | string | The name of the contact | Yes |
| string | The email of the contact | Yes | |
| phone | string | The phone number of the contact | Yes |
| role | string | The role of the contact | Yes |
Response
A successful response will return a 200 OK status code and a JSON object containing the details of the newly created contact.
{
"uuid": "248808cd-f2a5-457f-af4d-c4ae1a3d41ce",
"name": "Jeremy Bearimy",
"email": "[email protected]",
"phone": "01234 567890",
"role": "Head of Timeline Operations"
}