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>"
}
]
}List model sync 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>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter runs by model identifier.
Run statuses to include.
pending, running, success, error, cancelled, cancelling Maximum number of runs to return.
Number of runs to skip.
Successful response
List of runs.
Show child attributes
Was this page helpful?