Skip to main content
GET
/
v1
/
schedules
List Schedules
curl --request GET \
  --url https://api.olostep.com/v1/schedules \
  --header 'Authorization: Bearer <token>'
{
  "schedules": [
    {
      "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"
    }
  ],
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

include_deleted
enum<string>
default:false

Set to 'true' to include deleted schedules in the response. By default, deleted schedules are filtered out.

Available options:
true,
false

Response

Successful response with list of schedules.

schedules
object[]

Array of schedule objects

count
integer

Total number of schedules