GET v1/networkbroadcastevents?location={location}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| location | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
NetworkBroadcastEventsResource| Name | Description | Type | Additional information |
|---|---|---|---|
| NetworkBroadcastEvents | Collection of NetworkBroadcastEventDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"networkBroadcastEvents": [
{
"id": 1,
"label": "sample string 2",
"location": 3
},
{
"id": 1,
"label": "sample string 2",
"location": 3
}
]
}
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
<NetworkBroadcastEvents>
<NetworkBroadcastEvent>
<Id>1</Id>
<Label>sample string 2</Label>
<Location>3</Location>
</NetworkBroadcastEvent>
<NetworkBroadcastEvent>
<Id>1</Id>
<Label>sample string 2</Label>
<Location>3</Location>
</NetworkBroadcastEvent>
</NetworkBroadcastEvents>
</Resources>