Skip to main content
GET
/
api
/
workspaces
/
{id}
/
schedules
List Schedules
curl --request GET \
  --url http://localhost:8080/api/workspaces/{id}/schedules \
  --header 'Authorization: Bearer <token>'
{
  "schedules": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "cron_expression": "<string>",
      "enabled": true,
      "last_run_at": "<string>",
      "next_run_at": "<string>",
      "instructions": "<string>",
      "last_run_status": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "name": "<string>",
      "status": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Successful Response

schedules
ScheduleResponse · object[]
required