Rensei docs

List A2A task dispatches for the authenticated org

Returns both `explicit` (authored `agent.dispatch` workflow nodes) and `transparent` (MCP-bridge auto-routed) dispatches. Auth: session cookie via `requireOrgAccess()` (cookie-only today; CLI bearer tokens use a separate path).

GET
/api/a2a/dispatches

Authorization

cookieAuth
wos-session<token>

WorkOS AuthKit browser session cookie.

In: cookie

Query Parameters

limit?integer
Default50
Range1 <= value <= 200
before?string

Cursor for backward pagination (ISO-8601 timestamp).

Formatdate-time
kind?string
Default"all"
Value in"explicit" | "transparent" | "all"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/a2a/dispatches"
{
  "dispatches": [
    {
      "id": "string",
      "kind": "explicit",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "error": "Session not found"
}
{
  "error": "Session not found"
}