Base URL
All examples and the interactive playground target the nonprod environment:Conventions
- Auth -
Authorization: Bearer <org_… key>on every endpoint, exceptPOST /v1/track, which takes a publishableek_live_…tracking key as?key=or the bodykeyfield. See Authentication. - Wire format - JSON with
snake_casefield names. Timestamps are ISO 8601 with timezone; dates (likedob) are plainYYYY-MM-DDstrings. - Errors - one envelope everywhere:
{ "error": { "code", "status", "message", "details"? } }. Thecodeis stable;messagewording is not a contract. - Idempotency - endpoints that declare it accept an
Idempotency-Keyheader. Same key + same body → the original response is replayed. Same key + different body →409 IDEMPOTENCY_CONFLICT. - Async jobs - bulk import validation and commit run asynchronously:
the call returns
202 Acceptedand you poll the job resource for state.
Surfaces
The raw OpenAPI document is available at
/openapi/partner.json.