Skip to main content
POST
/
crm
/
companies
Create a CRM company
curl --request POST \
  --url https://api.zeeg.me/v2/crm/companies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp",
  "domain": "acme.com",
  "description": "A global provider of anvils and gadgets.",
  "websiteUrl": "https://acme.com",
  "primaryLocation": "Phoenix, AZ",
  "socials": {
    "linkedin": "<string>",
    "twitter": "<string>",
    "facebook": "<string>",
    "instagram": "<string>"
  }
}
'
{
  "success": true,
  "status": 201,
  "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.

Creates a new CRM company record.

Domain uniqueness

domain must be unique within your workspace. Attempting to create a company with a domain that already exists will return an error. If you want to create-or-update in one call, use the Assert a CRM Company endpoint instead. Pass social profile URLs as a nested socials object:
{
  "name": "Acme Corp",
  "socials": {
    "linkedin": "https://linkedin.com/company/acme",
    "twitter": "https://twitter.com/acme"
  }
}

Authorizations

Authorization
string
header
required

Body

application/json
name
string
required

Display name of the company.

Example:

"Acme Corp"

domain
string | null

Primary domain. Must be unique within the workspace.

Example:

"acme.com"

description
string | null

Free-text description.

Example:

"A global provider of anvils and gadgets."

websiteUrl
string | null

Company website URL.

Example:

"https://acme.com"

primaryLocation
string | null

Primary location or address.

Example:

"Phoenix, AZ"

socials
object

Social profile links.

Response

Created

success
boolean
Example:

true

status
integer
Example:

201

company
object

A CRM company record.

Last modified on May 7, 2026