PUT
/
customers
/
{customer}
/
contacts
/
{id}
curl --request PUT \
  --url https://eu.sequencehq.com/api/customers/{customer}/contacts/{id} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "John Smith",
  "email": "john.smith@example.com",
  "billingPreference": "NONE"
}'
{
  "id": "9a1e38a9-4dc9-776f-f974-4e7ee9f4d6cc",
  "name": "John Smith",
  "email": "john.smith@example.com",
  "billingPreference": "NONE",
  "createdAt": "2022-06-28T16:47:00Z",
  "updatedAt": "2022-06-28T16:47:00Z",
  "archivedAt": "2023-06-28T16:47:00Z"
}

Headers

Authorization
string
required

Your API credentials. Eg. Basic {credentials}.

Sequence-Version
enum<string>

Use this header to select an API version

Available options:
2024-07-30

Path Parameters

customer
string
required

The Customer ID

id
string
required

Unique ID

Body

application/json

Response

200
application/json

OK

The response is of type object.