Skip to main content
An Account represents a company or organization in a CRM system. It contains information about the company including contact details, financial information, and organizational hierarchy. Account objects are delivered within Sync Events under the unified field. You can download the JSON schema files here:
{
  "type": "Account",
  "event": {
    "id": "001234567890ABC",
    "name": "Acme Corporation",
    "description": "Leading provider of innovative solutions",
    "industry": "Technology",
    "website": "https://www.acme-corp.com",
    "numberOfEmployees": 5000,
    "annualRevenue": 150000000.00,
    "phone": "+1-555-123-4567",
    "fax": "+1-555-123-4568",
    "ownerId": "005234567890XYZ",
    "parentAccountId": "001234567890DEF",
    "accountType": "Customer",
    "accountSource": "Web",
    "billingAddress": {
      "street": "123 Main Street",
      "city": "San Francisco",
      "state": "CA",
      "postalCode": "94105",
      "country": "United States"
    },
    "shippingAddress": {
      "street": "456 Oak Avenue",
      "city": "San Francisco",
      "state": "CA",
      "postalCode": "94107",
      "country": "United States"
    },
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-12-20T14:45:30Z"
  },
  "category": "CRM"
}

Properties

type
string
required
The type of the event. Always set to “Account”.
event
object
required
The main account data containing all account information.
category
string
required
Category or classification of the account event.