Skip to main content
PATCH
Update Contact
The PATCH request is used to partially update an existing entity by the given id. This means:
  • Only the fields provided in the request body will be updated.
  • Fields not provided in the request body will remain unchanged.
  • The request is idempotent, meaning multiple identical PATCH requests will always result in the same final state.

Authorizations

X-API-Key
string
header
required

API Key for authentication

Path Parameters

customer_id
string
required

customer_id

contact_id
string
required

contact_id

Body

application/json

request

reference_id
string
Maximum string length: 255
Example:

"CUS123"

first_name
string
Maximum string length: 50
Example:

"John"

last_name
string
Maximum string length: 50
Example:

"Doe"

email
string
Example:

"john.doe@example.com"

phone
string

Phone number in E.164 format

Example:

"+14155552671"

designation
string
Maximum string length: 50
Example:

"Sales Manager"

is_default
boolean

When true, sets this as the primary contact. Omitted/false does not change the current primary contact.

attributes
object[]

Response

OK

data
object