v1

latestOpenAPI 3.0.2Terms of Use2026-08-061441681.6 MB
schedules

Fetch all schedules

This operation shows the details of all of your schedules.

get/schedules

Query parameters

filterstring

Restricts the data that gets returned by filtering on one or more values associated with a field. Construct a filter using a two-part expression that specifies the field on which to filter and the logic to use to filter. Filters use a zero-based index.

For valid filter operators and filter fields, see How to get filtered query results with the Wowza Video REST API.

Example: filter[0][field]=state&filter[0][eq]=stopped

pageinteger

Returns a paginated view of results from the HTTP request. Specify a positive integer to indicate which page of the results should be displayed. The default is 1.

For more information and examples, see Get paginated query results with the Wowza Video REST API.

per_pageinteger

For use with the page parameter. Indicates how many records should be included in a page of results. A valid value is any positive integer. The default and maximum value is 1000.

Response

Success

Example response

{
  "schedules": [
    {
      "id": "28bwb5WT",
      "state": "disabled",
      "name": "Scheduled recurring start for my camera",
      "transcoder_id": "VGB21JFJ",
      "transcoder_name": "My Camera",
      "recurrence_type": "recur",
      "recurrence_data": "monday,tuesday,wednesday,thursday,friday",
      "action_type": "start_stop",
      "start_transcoder": "2020-02-01T00:00:00.000Z",
      "stop_transcoder": "2020-02-29T23:59:59.999Z",
      "start_repeat": "2020-02-01T00:00:00.000Z",
      "end_repeat": "2020-02-29T00:00:00.000Z",
      "created_at": "2020-01-29T17:16:21.995Z",
      "updated_at": "2020-01-31T14:58:43.995Z"
    },
    {
      "id": "4RCWgfS5",
      "state": "enabled",
      "name": "Scheduled stop for my live event",
      "transcoder_id": "Qjl5J38Z",
      "transcoder_name": "Awesome Live Event",
      "recurrence_type": "once",
      "action_type": "stop",
      "start_transcoder": "2020-02-01T00:00:00.000Z",
      "stop_transcoder": "2020-02-29T23:59:59.999Z",
      "created_at": "2020-01-29T17:16:21.995Z",
      "updated_at": "2020-01-31T08:25:45.995Z"
    }
  ]
}