v1

latestOpenAPI 3.0.32026-07-264955102.7 KB
CRM

Create company

Creates a new company in your CRM.

post/v2/api/crm/companies

Request body

namestring required

Company name

websitestring nullable

Company website URL

industrystring nullable

Industry sector

Example request

{
  "name": "Acme Corp",
  "website": "https://acme.com",
  "industry": "Technology"
}

Response

Company created

Example response

{
  "data": {
    "id": "com-xyz789",
    "name": "Acme Corp",
    "website": "https://acme.com",
    "industry": "Technology",
    "person_count": 3,
    "interactions": 12,
    "last_activity_at": "2026-04-28T10:30:00",
    "created_at": "2026-04-01T09:00:00",
    "updated_at": "2026-04-28T10:30:00"
  }
}