Passer au contenu principal
PUT
/
v2
/
api
/
crm
/
companies
/
{id}
Update company
curl --request PUT \
  --url https://api.withallo.com/v2/api/crm/companies/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "industry": "SaaS"
}
'
{
  "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.

Scope requis : CRM_WRITE

Mise a jour partielle

Cet endpoint effectue une mise a jour partielle — seuls les champs inclus dans le body sont modifies. Les champs omis restent inchanges. Tous les champs de l’endpoint de creation sont acceptes et optionnels.

Autorisations

Authorization
string
header
requis

Paramètres de chemin

id
string
requis

Company ID (e.g., "com-xyz789")

Exemple:

"com-xyz789"

Corps

application/json

Request body for updating a company. Only provided fields will be updated.

name
string | null

Company name

website
string | null

Company website URL

industry
string | null

Industry sector

Réponse

Company updated

data
object

A company in the CRM