Skip to main content
PATCH
Update a Contact

Path Parameters

contact_id
string<uuid>
required

Body

application/json

Request body for updating a contact via PATCH.

first_name
string | null

First name of the contact

Example:

"Jane"

last_name
string | null

Last name of the contact

Example:

"Smith"

email
string | null

Email address of the contact

Example:

"jane@acme.com"

title
string | null

Job title of the contact

Example:

"VP of Engineering"

phone_number
string | null

Phone number of the contact

Example:

"+1-555-123-4567"

linkedin_url
string | null

LinkedIn profile URL

Example:

"https://linkedin.com/in/janesmith"

location
string | null

Location of the contact

Example:

"San Francisco, CA"

notes
string | null

Notes about the contact

Example:

"Met at SaaStr 2025"

do_not_contact
boolean | null

Whether the contact has opted out of outreach

tags
string<uuid>[] | null

Tags for the contact

Response

Successful Response

data
ContactResponse · object
required

Contact resource. Custom fields appear as additional keys prefixed with custom_field_.

meta
ResponseMeta · object