List branches

GET
/v1/threads/{thread_id}/branches
AuthorizationBearer <token>

Checked by host({authenticate}), which maps the request to a Principal or rejects it.

In: header

Path Parameters

thread_id*string

Lowercase UUID string. Writers MUST generate UUIDv7; readers accept any lowercase UUID, so the version is not an admission rule.

Match^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/threads/string/branches"
[  {    "branch_id": "string",    "parent_branch_id": "string",    "fork_at_seq": 1,    "mode": "live",    "runnable": true  }]
Edit on GitHub