GET Screen/Details/{screenId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
screenId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ScreenDetailsModel
NameDescriptionTypeAdditional information
GroupName

string

None.

AsAdmin

boolean

None.

ActivePlaylists

Collection of PlaylistResponseModel

None.

CurrentRadioUrl

string

None.

IsPlayingRadio

boolean

None.

LastActive

date

None.

Response Formats

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"groupName":"sample string 1","asAdmin":true,"activePlaylists":[{"id":1,"name":"sample string 2","isLocked":true,"active":true,"position":5,"numberOfSlides":6,"isPlaying":true,"isScheduled":true,"isRecurring":true,"scheduleStart":"2026-01-12T16:56:51.0899984+00:00","scheduleEnd":"2026-01-12T16:56:51.0899984+00:00"},{"id":1,"name":"sample string 2","isLocked":true,"active":true,"position":5,"numberOfSlides":6,"isPlaying":true,"isScheduled":true,"isRecurring":true,"scheduleStart":"2026-01-12T16:56:51.0899984+00:00","scheduleEnd":"2026-01-12T16:56:51.0899984+00:00"}],"currentRadioUrl":"sample string 3","isPlayingRadio":true,"lastActive":"2026-01-12T16:56:51.0899984+00:00"});

application/json, text/json

Sample:
{
  "groupName": "sample string 1",
  "asAdmin": true,
  "activePlaylists": [
    {
      "id": 1,
      "name": "sample string 2",
      "isLocked": true,
      "active": true,
      "position": 5,
      "numberOfSlides": 6,
      "isPlaying": true,
      "isScheduled": true,
      "isRecurring": true,
      "scheduleStart": "2026-01-12T16:56:51.0899984+00:00",
      "scheduleEnd": "2026-01-12T16:56:51.0899984+00:00"
    },
    {
      "id": 1,
      "name": "sample string 2",
      "isLocked": true,
      "active": true,
      "position": 5,
      "numberOfSlides": 6,
      "isPlaying": true,
      "isScheduled": true,
      "isRecurring": true,
      "scheduleStart": "2026-01-12T16:56:51.0899984+00:00",
      "scheduleEnd": "2026-01-12T16:56:51.0899984+00:00"
    }
  ],
  "currentRadioUrl": "sample string 3",
  "isPlayingRadio": true,
  "lastActive": "2026-01-12T16:56:51.0899984+00:00"
}

application/xml, text/xml

Sample:
<ScreenDetailsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveScreen.Service.Models">
  <ActivePlaylists>
    <PlaylistResponseModel>
      <Active>true</Active>
      <Id>1</Id>
      <IsLocked>true</IsLocked>
      <IsPlaying>true</IsPlaying>
      <IsRecurring>true</IsRecurring>
      <IsScheduled>true</IsScheduled>
      <Name>sample string 2</Name>
      <NumberOfSlides>6</NumberOfSlides>
      <Position>5</Position>
      <ScheduleEnd>2026-01-12T16:56:51.0899984+00:00</ScheduleEnd>
      <ScheduleStart>2026-01-12T16:56:51.0899984+00:00</ScheduleStart>
    </PlaylistResponseModel>
    <PlaylistResponseModel>
      <Active>true</Active>
      <Id>1</Id>
      <IsLocked>true</IsLocked>
      <IsPlaying>true</IsPlaying>
      <IsRecurring>true</IsRecurring>
      <IsScheduled>true</IsScheduled>
      <Name>sample string 2</Name>
      <NumberOfSlides>6</NumberOfSlides>
      <Position>5</Position>
      <ScheduleEnd>2026-01-12T16:56:51.0899984+00:00</ScheduleEnd>
      <ScheduleStart>2026-01-12T16:56:51.0899984+00:00</ScheduleStart>
    </PlaylistResponseModel>
  </ActivePlaylists>
  <AsAdmin>true</AsAdmin>
  <CurrentRadioUrl>sample string 3</CurrentRadioUrl>
  <GroupName>sample string 1</GroupName>
  <IsPlayingRadio>true</IsPlayingRadio>
  <LastActive>2026-01-12T16:56:51.0899984+00:00</LastActive>
</ScreenDetailsModel>