Skip to main content
PATCH
/
v1
/
update-contacts-batch
Update Contacts Batch
curl --request PATCH \
  --url https://api.telli.com/v1/update-contacts-batch \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contacts": [
    {
      "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "first_name": "<string>",
      "last_name": "<string>",
      "phone_number": "<string>",
      "contact_details": {},
      "salutation": "<string>",
      "email": "[email protected]",
      "timezone": "<string>",
      "external_contact_id": "<string>",
      "external_url": "<string>"
    }
  ]
}'
[
  {
    "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "success",
    "error": "<string>"
  }
]

Authorizations

Authorization
string
header
required

API key must be provided as: Bearer <api_key>

Body

application/json
contacts
object[]
required

Array of contacts to update. Maximum 1000 contacts per request.

Response

Contacts updated successfully

contact_id
string<uuid>

The telli contact ID

status
enum<string>

Status of the contact update

Available options:
success,
error
error
string

Error message (only present for failed updates)

I