Skip to main content
POST
/
v1
/
intents
Declare an intent
curl --request POST \
  --url https://sync.ablo.app/v1/intents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "target": {
    "resource": "<string>",
    "id": "<string>",
    "path": "<string>",
    "field": "<string>",
    "range": {},
    "meta": {}
  },
  "action": "<string>",
  "intentId": "<string>",
  "ttl": "<string>"
}
'
{
  "id": "<string>",
  "actor": "<string>",
  "action": "<string>",
  "field": "<string>",
  "expiresAt": "2023-11-07T05:31:56Z",
  "target": {
    "resource": "<string>",
    "id": "<string>",
    "path": "<string>",
    "field": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.abloatai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key (sk_live_…) or Biscuit capability token. The same header carries both — the server discriminates by token shape.

Body

application/json
target
object
required
action
string
required

Action verb (e.g. edit, claim).

intentId
string

Client-issued idempotency handle. Server generates one when omitted.

ttl

Seconds or duration string (30s, 5m). Defaults to server policy.

Response

Intent created

id
string
actor
string
participantKind
enum<string>
Available options:
user,
agent,
system
action
string
field
string
expiresAt
string<date-time>
target
object