Create a record
Authorizations
API key (sk_live_…) or a scoped capability/ephemeral token. The same header carries both — the server discriminates by token shape.
Headers
Replay-safe identifier; derive it from the business event, not a random value. Same key + same body returns the same receipt; same key + different body returns 409.
Path Parameters
The model name from your pushed schema (e.g. tasks). The HTTP model API is generated from your own schema — these paths are generic over every model you define.
Body
The model’s fields, as defined in your schema. Shape varies per model; system fields (id, createdAt, updatedAt, organizationId, createdBy) are server-managed.
Client-chosen id on create (server generates one when omitted).
Conflict policy when the write is based on a stale snapshot. reject (default) fails with AbloStaleContextError; overwrite is blind last-writer-wins; notify holds the write and returns the current value so you can re-apply.
reject, overwrite, notify, null Sync watermark the write was based on. Enables stale-state detection.
Claim id this write is bound to (held across a slow read→write gap).
Alternative to the Idempotency-Key header.
Response
Commit receipt.
"commit_receipt"confirmed, rejected Ids of any UPDATE/DELETE that matched zero rows (omitted when nothing missed).
Held-write advisories from onStale: "notify".