Skip to main content
GET
/
v1
/
schedules
/
{schedule_id}
Get Schedule
curl --request GET \
  --url https://api.olostep.com/v1/schedules/{schedule_id} \
  --header 'Authorization: Bearer <token>'
{
  "schedule": {
    "team_id": "<string>",
    "schedule_id": "<string>",
    "type": "recurring",
    "endpoint": "<string>",
    "payload": {},
    "cron_expression": "<string>",
    "execute_at": "2023-11-07T05:31:56Z",
    "expression_timezone": "<string>",
    "text": "<string>",
    "schedule_name": "<string>",
    "schedule_group": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "state": "ENABLED",
    "method": "GET"
  }
}

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

Unique identifier for the schedule. Must start with 'schedule_'.

Response

Schedule retrieved successfully.

schedule
object