GET v1/controlrooms/upcomingevents?location={location}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
location

integer

Required

Body Parameters

None.

Response Information

Resource Description

ControlRoomEventsResource
NameDescriptionTypeAdditional information
Events

Collection of ControlRoomEventDto

None.

Response Formats

application/json, text/json

Sample:
{
  "events": [
    {
      "scheduleId": 1,
      "runDateTime": "2026-05-19T07:50:09.6275095-05:00",
      "endDateTime": "2026-05-19T07:50:09.6275095-05:00",
      "channelId": 2,
      "channelName": "sample string 3",
      "showTitle": "sample string 4"
    },
    {
      "scheduleId": 1,
      "runDateTime": "2026-05-19T07:50:09.6275095-05:00",
      "endDateTime": "2026-05-19T07:50:09.6275095-05:00",
      "channelId": 2,
      "channelName": "sample string 3",
      "showTitle": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<ControlRoomEventsResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.Controllers.api.v1">
  <Events>
    <ControlRoomEventDto>
      <ChannelId>2</ChannelId>
      <ChannelName>sample string 3</ChannelName>
      <EndDateTime>2026-05-19T07:50:09.6275095-05:00</EndDateTime>
      <RunDateTime>2026-05-19T07:50:09.6275095-05:00</RunDateTime>
      <ScheduleId>1</ScheduleId>
      <ShowTitle>sample string 4</ShowTitle>
    </ControlRoomEventDto>
    <ControlRoomEventDto>
      <ChannelId>2</ChannelId>
      <ChannelName>sample string 3</ChannelName>
      <EndDateTime>2026-05-19T07:50:09.6275095-05:00</EndDateTime>
      <RunDateTime>2026-05-19T07:50:09.6275095-05:00</RunDateTime>
      <ScheduleId>1</ScheduleId>
      <ShowTitle>sample string 4</ShowTitle>
    </ControlRoomEventDto>
  </Events>
</ControlRoomEventsResource>