track_v2

Make a single request

This endpoint lets you create, update, or delete a single person or object—including managing relationships between objects and people.

An "object" is any kind of non-person entity that you want to associate with one or more people—like a company, an educational course that people signed up for, a product, etc.

Your request must be smaller than 32kb.

post/api/v2/entity

Request body

OR
OR

Example request

{
  "type": "person",
  "identifiers": {
    "id": "42"
  },
  "action": "identify",
  "attributes": {
    "first_name": "Jane",
    "last_name": "Doe",
    "plan": "premium"
  }
}

Response

A successful request returns an empty object response.

Changes