JointSpace API Documentation
REST API Method: GET channels/id
Returns details about the given channel.
URL
http://ip-address:1925/1/channels/id
Format
json
HTTP Method
GET
Requires Authentication
false
Parameters
- id: The id of the requested channel.
Response
This resource returns a JSON object with key/value pairs. See the JSON example for how these key/value pairs are returned.
Keys
- preset (string): The preset number of the channel.
- name (string): The name of the channel.
- frequency (string): The frequency of the channel.
- onid (string): The Original Network ID of a digital channel or N/A.
- tsid (string): The Transport Stream ID of a digital channel or N/A.
- sid (string): The Service ID of a digital channel or N/A.
- analog (boolean): Set to true if the channel is analog, false if not.
- digital (string): DVB for digital terrestrial or cable channels, DVB-S2 for satellite channels or N/A.
JSON example
{
"preset": "4",
"name": "Premium Cinema HD",
"frequency": "3176",
"onid": "272",
"tsid": "940",
"sid": "4301",
"analog": false,
"digital": "DVB"
}