GET Device/PlayList/{deviceId}
Get play list items (media sequence) for the Smart Display Device
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| deviceId |
Device Id / User Name |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Player information plus list of media and durations to play
DevicePlayList| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceId |
Device Id/User Name |
string |
Max length: 50 |
| PlayerName |
Player Name |
string |
Max length: 50 |
| OrgId |
Organisation Id / Unit Id |
integer |
None. |
| ScrollingText |
Scrolling text value if used |
string |
None. |
| TemplateFileName |
HTML template file name (which exists in VisualTemplate/ThemeFolder) |
string |
None. |
| ThemeFolder |
Folder name of the associated theme |
string |
None. |
| PlayList |
Device Media Play List data (filenames and durations) |
Collection of DeviceMediaPlayList |
None. |
Response Formats
application/json, text/json
Sample:
{
"DeviceId": "sample string 1",
"PlayerName": "sample string 2",
"OrgId": 3,
"ScrollingText": "sample string 4",
"TemplateFileName": "sample string 5",
"ThemeFolder": "sample string 6",
"PlayList": [
{
"Row": 1,
"MediaFileName": "sample string 2",
"Duration": 3
},
{
"Row": 1,
"MediaFileName": "sample string 2",
"Duration": 3
}
]
}