Skip to main content
PATCH
/
contacts
/
{contact_id}
Update Contact
curl --request PATCH \
  --url https://api.getoutbox.ai/contacts/{contact_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "full_name": "<string>",
  "email": "<string>",
  "phone_number": "<string>",
  "tags": [
    "<string>"
  ]
}
'

Authorizations

Authorization
string
header
required

Company API Key

Path Parameters

contact_id
string
required

The ID of the contact

Body

application/json

Contact update details

full_name
string

Contact's full name

email
string

Contact's email address

phone_number
string

Contact's phone number

tags
string[]

Tags to associate with the contact

Response

Contact updated successfully