POST
/
contacts-list
Create Contacts Bulk
curl --request POST \
  --url https://api.example.com/contacts-list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "name": "<string>",
    "email": "jsmith@example.com",
    "phone": {
      "phoneNumber": "<string>",
      "phoneType": "mobile"
    },
    "roles": []
  }
]
'
[
  {
    "name": "<string>",
    "id": "<string>",
    "email": "jsmith@example.com",
    "phone": {
      "phoneNumber": "<string>",
      "phoneType": "mobile"
    },
    "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
DEPhoneNumber · object
roles
string[]

Response

Successful Response

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