Skip to main content
PATCH
/
crm
/
companies
/
{id}
Patch a CRM company
curl --request PATCH \
  --url https://api.zeeg.me/v2/crm/companies/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "description": "<string>",
  "websiteUrl": "<string>",
  "primaryLocation": "<string>",
  "socials": {
    "linkedin": "<string>",
    "twitter": "<string>",
    "facebook": "<string>",
    "instagram": "<string>"
  }
}
'
{
  "success": true,
  "status": 200,
  "company": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Acme Corp",
    "domain": "acme.com",
    "description": "A global provider of anvils and gadgets.",
    "websiteUrl": "https://acme.com",
    "primaryLocation": "Phoenix, AZ",
    "industries": [
      "technology"
    ],
    "socials": {
      "linkedin": "https://linkedin.com/company/acme",
      "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 company 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/company/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 company record to update.

Body

application/json
name
string
domain
string | null
description
string | null
websiteUrl
string | null
primaryLocation
string | null
socials
object

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

company
object

A CRM company record.

Last modified on May 7, 2026