v1
latestOpenAPI 3.1.02026-07-263788129.7 KBContacts
Update a Contact
Updates an existing contact by its contact_id. Any tags list provided replaces the existing tags on the contact.
patch/v1/contacts/{contact_id}
Path parameters
contact_idstring uuid required
Request body
Example request
{
"first_name": "Jane",
"last_name": "Smith",
"email": "jane@acme.com",
"title": "VP of Engineering",
"phone_number": "+1-555-123-4567",
"linkedin_url": "https://linkedin.com/in/janesmith",
"location": "San Francisco, CA",
"notes": "Met at SaaStr 2025"
}Response
Successful Response
Example response
{
"data": {
"id": "con_abc123",
"account_id": "acc_def456",
"first_name": "Jane",
"last_name": "Smith",
"email": "jane@acme.com",
"title": "VP of Engineering",
"phone_number": "+1-555-123-4567",
"linkedin_url": "https://linkedin.com/in/janesmith",
"location": "San Francisco, CA",
"source": "linkedin",
"notes": "Met at SaaStr 2025",
"scoring": {
"heat_score": "Hot"
},
"tags": [
"Interested",
"Decision Maker"
],
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-15T10:30:00Z"
}
}