Distribution

List recent distribution runs

GET/distribution/queue

The linked user's recent distribution runs, most recent first, scoped to their usergroup (a run is visible when the user can read the collection it distributes). Requires the read scope and distribution access (dm or dv).

X-Api-Key<token>

Issued to you when your integration is provisioned. Determines which catalogue resources are visible and which AI tools are available.

In: header

Query Parameters

limit?integer

Page size (max 100).

Range1 <= value <= 100
Default25
offset?integer
Range0 <= value
Default0
status?string

Optional status filter. Accepts either the numeric status code (e.g. 2) or the raw status string (e.g. complete). An unknown numeric code returns 400.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/distribution/queue"
{  "data": {    "items": [      {        "queueRef": 555,        "destinationRef": 7,        "status": 0,        "statusLabel": "complete",        "createdAt": "2026-07-15 10:00:00"      }    ],    "total": 3,    "limit": 25,    "offset": 0  }}
{  "success": false,  "status": "fail",  "message": "string",  "error": {    "message": "API key is required",    "code": "NO_API_KEY"  }}

{  "success": false,  "status": "fail",  "message": "API key is required",  "error": {    "code": "NO_API_KEY",    "message": "API key is required"  }}

{  "success": false,  "status": "fail",  "message": "This API key does not have the 'write' scope",  "error": {    "code": "INSUFFICIENT_SCOPE",    "message": "This API key does not have the 'write' scope"  }}