v1

latestOpenAPI 3.0.02026-08-068926279.2 KB
Contacts

Create a contact

Creates a new client contact

post/contacts

Request body

client_idinteger required
first_namestring required
last_namestring
emailstring email required
phonestring

Example request

{
  "client_id": 1,
  "first_name": "John",
  "last_name": "Doe",
  "email": "john@example.com",
  "phone": "555-1234"
}

Response

Successful response

idinteger
team_idinteger
client_idinteger
titlestring nullable
first_namestring
last_namestring
emailstring email
phonestring nullable

Example response

{
  "id": 1,
  "team_id": 1,
  "client_id": 1,
  "title": "Mr.",
  "first_name": "John",
  "last_name": "Doe",
  "email": "john@example.com",
  "phone": "555-1234"
}