FruxonDocs
ApiCollection pipelines

Lists a run's collect result set.

Returns one row per source item joined to its agent output (the per-item run's final result), for the collect-sink result table / export. Items not yet completed carry a null output.

GET
/v1/tenants/{tenant}/collectionRuns/{collectionRun}/results
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

collectionRun*string

The unique identifier of the run.

Formatuuid
tenant*string

The tenant identifier

Query Parameters

PageSize?integer

The maximum number of items to return per page

Formatint32
PageToken.Skip?integer
Formatint32
PageToken.Cursor?string

Opaque 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.

orderBy?

Sort order (AIP-132 orderBy).

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/collectionRuns/497f6eca-6276-4993-bfeb-53cbbbba6f08/results"
{
  "items": [
    {
      "itemKey": "string",
      "status": "PENDING",
      "executionRecordId": "00000000-0000-0000-0000-000000000000",
      "output": "string",
      "outputFields": {
        "result": "string"
      },
      "sinkTarget": "string",
      "sourceUrl": "string"
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}