GET ScreenRemote/GetRadioStatus/{screenId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| screenId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RadioStatusModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IsPlaying | boolean |
None. |
|
| RadioChannels | Collection of RadioChannelModel |
None. |
Response Formats
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"isPlaying":true,"radioChannels":[{"name":"sample string 1","radioUrl":"sample string 2"},{"name":"sample string 1","radioUrl":"sample string 2"}]});
application/json, text/json
Sample:
{
"isPlaying": true,
"radioChannels": [
{
"name": "sample string 1",
"radioUrl": "sample string 2"
},
{
"name": "sample string 1",
"radioUrl": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RadioStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveScreen.Service.Models">
<IsPlaying>true</IsPlaying>
<RadioChannels>
<RadioChannelModel>
<Name>sample string 1</Name>
<RadioUrl>sample string 2</RadioUrl>
</RadioChannelModel>
<RadioChannelModel>
<Name>sample string 1</Name>
<RadioUrl>sample string 2</RadioUrl>
</RadioChannelModel>
</RadioChannels>
</RadioStatusModel>