Test And Accept
API ReferenceClients

Add contact to client

Creates a new contact for a client

POST
/clients/{clientId}/contacts
AuthorizationBearer <token>

Clerk authentication token

In: header

Path Parameters

clientIdstring
Match^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$
Formatuuid
contactobject

Response Body

curl -X POST "http://localhost:3001/clients/497f6eca-6276-4993-bfeb-53cbbbba6f08/contacts" \
  -H "Content-Type: application/json" \
  -d '{
    "contact": {
      "name": "string",
      "email": "user@example.com"
    }
  }'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "clientId": "5e505642-9024-474d-9434-e5a44f505cc5",
  "name": "string",
  "email": "string",
  "phone": "string",
  "role": "string",
  "isPrimary": true,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}