Fetch schedules

See your organization's scheduling runs

This endpoint returns a paginated list of your organization's scheduling runs. Use it to see what is currently running, check how close you are to the concurrency limit, or recover an actionUuid you no longer have.

Request URL

Request Payload

//none

Response Payload

{
    "items":
    [
        {
            "actionUuid": "f81d4fae-7dec-11d0-a765-00a0c91e6bf6",
            "workspaceUuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
            "date": "2025-07-08",
            "status": "pending",
            "createdAt": "2025-07-08T14:02:11Z",
            "uri": "/v2/schedules/f81d4fae-7dec-11d0-a765-00a0c91e6bf6"
        }
    ],
  "nextCursor": null
}
FieldsTypeDescription
actionUuidStringIdentifies this scheduling run request
workspaceUuidStringWorkspace under which the scheduling action has taken place
dateDatePlanned date for the routes
statusStringStatus of the scheduling action
createdAtDateTimeCreation time of the scheduling action
uriStringUsed to fetch the status and actionSummary of the scheduling action
nextCursorStringThe URL for the next page of results. If there are no more pages, this value is null.