Skip to main content
Entities represent your customers or users in Lime Journey. Each entity can have custom properties, associated events, and segment memberships.

Properties

Entities can have any number of custom properties:
{
  "external_id": "customer123",
  "properties": {
    "plan_type": "basic",
    "team_size": 5,
    "signup_date": "2024-01-15"
  }
}

Creating Entities

await client.createEntity({
  externalId: 'customer123',
  properties: {
    plan_type: 'basic',
    team_size: 5
  }
});