Skip to main content
GET
/
schedules
/
{schedule_id}
Get Schedule
curl --request GET \
  --url https://api.example.com/schedules/{schedule_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "method": "<string>",
  "endpoint": "<string>",
  "cron_expr": "<string>",
  "timezone": "<string>",
  "timeout_seconds": 123,
  "max_retries": 123,
  "retry_delay_seconds": 123,
  "enabled": true,
  "description": "<string>",
  "payload": {},
  "next_run_at": 123,
  "created_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

id
string
required
name
string
required
method
string
required
endpoint
string
required
cron_expr
string
required
timezone
string
required
timeout_seconds
integer
required
max_retries
integer
required
retry_delay_seconds
integer
required
enabled
boolean
required
description
string | null
payload
Payload · object
next_run_at
integer | null
created_at
integer | null
updated_at
integer | null