GET v1/manualevents?start={start}&end={end}&channel={channel}&page_size={page_size}&offset={offset}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
start | date |
None. |
|
end | date |
None. |
|
channel | integer |
None. |
|
page_size | integer |
Default value is 200 |
|
offset | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
ManualEventsResourceName | Description | Type | Additional information |
---|---|---|---|
ManualEvents | Collection of ManualEventDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "manualEvents": [ { "id": 1, "location": 2, "name": "sample string 3", "length": 4, "device": 1, "deviceAction": 5, "deviceSlot": 6, "deviceTitle": 7, "deviceChapter": 8, "deviceCue": 9, "deviceFileKey": "sample string 10" }, { "id": 1, "location": 2, "name": "sample string 3", "length": 4, "device": 1, "deviceAction": 5, "deviceSlot": 6, "deviceTitle": 7, "deviceChapter": 8, "deviceCue": 9, "deviceFileKey": "sample string 10" } ] }
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs"> <ManualEvents> <ManualEventDto> <Device>1</Device> <DeviceAction>5</DeviceAction> <DeviceChapter>8</DeviceChapter> <DeviceCue>9</DeviceCue> <DeviceFileKey>sample string 10</DeviceFileKey> <DeviceSlot>6</DeviceSlot> <DeviceTitle>7</DeviceTitle> <Id>1</Id> <Length>4</Length> <Location>2</Location> <Name>sample string 3</Name> </ManualEventDto> <ManualEventDto> <Device>1</Device> <DeviceAction>5</DeviceAction> <DeviceChapter>8</DeviceChapter> <DeviceCue>9</DeviceCue> <DeviceFileKey>sample string 10</DeviceFileKey> <DeviceSlot>6</DeviceSlot> <DeviceTitle>7</DeviceTitle> <Id>1</Id> <Length>4</Length> <Location>2</Location> <Name>sample string 3</Name> </ManualEventDto> </ManualEvents> </Resources>