Lists what the automation is waiting on a human for.
Each batch is one shared question with a set of items parked on it. This is the surface design §9.1 calls an awaiting-human entry — structurally it is one, and the waiting count is the number an operator actually reads.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The trigger identifier.
uuidThe tenant identifier
Query Parameters
The maximum number of items to return per page
int32int32Opaque cursor token from an external system (e.g. RAG API). When set, M:Fruxon.Common.Collections.PageToken.AsString returns this value directly instead of encoding Fruxon.Common.Collections.PageToken.Skip.
Only batches still awaiting an answer.
falseResponse Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/triggers/497f6eca-6276-4993-bfeb-53cbbbba6f08/ledger/batches"{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"ledgerId": "00000000-0000-0000-0000-000000000000",
"stageId": "string",
"status": "OPEN",
"waitingCount": 0,
"artifact": null,
"topicId": "00000000-0000-0000-0000-000000000000",
"expiresAt": 0,
"gatheringUntil": 0,
"lastJoinedAt": 0,
"resolvedAt": 0,
"createdAt": 0,
"detail": "string"
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Returns a single trigger with its current agent bindings.
Fetches one trigger by id, including the set of agents it currently fires. Returns 404 when no trigger with that id exists in the tenant.
Calls off an open batch.
The items go back to READY at the stage that asked, so a later pass re-batches them — cancelling the question is not the same as deciding the items no longer need one. Returns 409 when the batch has already been answered or expired.