Skip to main content
GET
/
storage
/
runs
/
list
List runs
curl --request GET \
  --url https://api.getcargo.io/v1/storage/runs/list \
  --header 'Authorization: Bearer <token>'
{
  "runs": [
    {
      "uuid": "<string>",
      "workspaceUuid": "<string>",
      "modelUuid": "<string>",
      "status": "pending",
      "temporalWorkflowId": "<string>",
      "errorMessage": "<string>",
      "s3Filenames": [
        "<string>"
      ],
      "finishedAt": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

modelUuid
string

Filter runs by model identifier.

statuses
enum<string>[]

Run statuses to include.

Available options:
pending,
running,
success,
error,
cancelled,
cancelling
limit
string

Maximum number of runs to return.

offset
string

Number of runs to skip.

Response

Successful response

runs
Runs · object[]
required

List of runs.