Skip to main content
POST
/
v2
/
api
/
crm
/
companies
Create company
curl --request POST \
  --url https://api.withallo.com/v2/api/crm/companies \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp",
  "website": "https://acme.com",
  "industry": "Technology"
}
'
{
  "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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://help.withallo.com/llms.txt

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

Required scope: CRM_WRITE

Body fields

FieldTypeRequiredDescription
namestringyesCompany name
websitestringnoCompany website URL
industrystringnoIndustry or sector

Authorizations

Authorization
string
header
required

Body

application/json

Request body for creating a company

name
string
required

Company name

Example:

"Acme Corp"

website
string | null

Company website URL

Example:

"https://acme.com"

industry
string | null

Industry sector

Example:

"Technology"

Response

Company created

data
object

A company in the CRM