GET v1/servers/{id}/supportedfeatures

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ServerSupportedFeatures
NameDescriptionTypeAdditional information
ServerModes

Collection of ServerSupportedMode

None.

SupportsVod

boolean

None.

SupportsLive

boolean

None.

SupportsCG

boolean

None.

SupportsVideoPlayback

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "serverModes": [
    {
      "mode": "None",
      "friendlyLabel": "sample string 1",
      "numOutputDevices": 2,
      "numInputDevices": 3
    },
    {
      "mode": "None",
      "friendlyLabel": "sample string 1",
      "numOutputDevices": 2,
      "numInputDevices": 3
    }
  ],
  "supportsVod": true,
  "supportsLive": true,
  "supportsCG": true,
  "supportsVideoPlayback": true
}

application/xml, text/xml

Sample:
<ServerSupportedFeatures xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastLib">
  <ServerModes>
    <ServerSupportedMode>
      <FriendlyLabel>sample string 1</FriendlyLabel>
      <Mode>None</Mode>
      <NumInputDevices>3</NumInputDevices>
      <NumOutputDevices>2</NumOutputDevices>
    </ServerSupportedMode>
    <ServerSupportedMode>
      <FriendlyLabel>sample string 1</FriendlyLabel>
      <Mode>None</Mode>
      <NumInputDevices>3</NumInputDevices>
      <NumOutputDevices>2</NumOutputDevices>
    </ServerSupportedMode>
  </ServerModes>
  <SupportsCG>true</SupportsCG>
  <SupportsLive>true</SupportsLive>
  <SupportsVideoPlayback>true</SupportsVideoPlayback>
  <SupportsVod>true</SupportsVod>
</ServerSupportedFeatures>