Skip to main content
PATCH
/
crm
/
people
/
{id}
Patch a CRM person
curl --request PATCH \
  --url https://api.zeeg.me/v2/crm/people/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "salutation": "<string>",
  "emails": [
    "jsmith@example.com"
  ],
  "jobTitle": "<string>",
  "description": "<string>",
  "phoneNumber": "<string>",
  "primaryLocation": "<string>",
  "avatarUrl": "<string>",
  "companyId": "<string>",
  "socials": {
    "linkedin": "<string>",
    "twitter": "<string>",
    "facebook": "<string>",
    "instagram": "<string>"
  }
}
'
{
  "success": true,
  "status": 200,
  "person": {
    "id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "firstName": "Jane",
    "lastName": "Doe",
    "salutation": "Ms",
    "emails": [
      "jane.doe@acme.com"
    ],
    "jobTitle": "Head of Product",
    "description": "Key decision-maker at Acme Corp.",
    "phoneNumber": "+4930123456789",
    "primaryLocation": "Berlin, Germany",
    "avatarUrl": null,
    "company": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "domain": "<string>"
    },
    "socials": {
      "linkedin": "https://linkedin.com/in/janedoe",
      "twitter": null,
      "facebook": null,
      "instagram": null
    },
    "customAttributes": {},
    "createdAt": "2025-01-15T09:00:00+00:00",
    "updatedAt": "2025-06-01T12:00:00+00:00"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt

Use this file to discover all available pages before exploring further.

Partially updates a CRM person record. Only fields you include in the request body are changed — omitted fields keep their current values. To update individual social links without overwriting the others, include only the keys you want to change inside socials:
{
  "socials": {
    "linkedin": "https://linkedin.com/in/updated"
  }
}
This updates linkedin only. twitter, facebook, and instagram are unchanged.

Authorizations

Authorization
string
header
required

Path Parameters

id
string<uuid>
required

UUID of the person record to update.

Body

application/json
firstName
string | null
lastName
string | null
salutation
string | null
emails
string<email>[] | null
jobTitle
string | null
description
string | null
phoneNumber
string | null
primaryLocation
string | null
avatarUrl
string | null
companyId
string | null
socials
object

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

person
object

A CRM person record.

Last modified on May 7, 2026