Skip to main content
POST
/
schedules
/
{schedule_id}
/
enable
Enable Schedule
curl --request POST \
  --url https://api.example.com/schedules/{schedule_id}/enable \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "enabled": true,
  "next_run_at": 123,
  "updated_at": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

schedule_id
string
required

Response

Successful Response

Trimmed response for state-changing operations (enable/disable).

id
string
required
name
string
required
enabled
boolean
required
next_run_at
integer | null
updated_at
integer | null