Skip to main content
POST
/
contacts
Create Contact
curl --request POST \
  --url https://sandbox.intermezzo.ai/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": {
    "phoneNumber": "<string>",
    "phoneType": "mobile"
  },
  "roles": []
}'
{
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": {
    "phoneNumber": "<string>",
    "phoneType": "mobile"
  },
  "id": "<string>",
  "roles": []
}

Authorizations

Authorization
string
header
required

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

Query Parameters

org_id
required

Body

application/json
name
string
required
email
string<email> | null
phone
object | null
roles
string[]

Response

Successful Response

name
string
required
id
string
required
email
string<email> | null
phone
object | null
roles
string[]
I