GET GetChannels?SID={SID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SID

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResponseOfListOfChannelsEntity
NameDescriptionTypeAdditional information
Message

string

None.

Status

boolean

None.

Body

Collection of ChannelsEntity

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": true,
  "Body": [
    {
      "CID": 1,
      "Name": "sample string 2",
      "URL": "sample string 3"
    },
    {
      "CID": 1,
      "Name": "sample string 2",
      "URL": "sample string 3"
    }
  ]
}

text/html

Sample:
{"Message":"sample string 1","Status":true,"Body":[{"CID":1,"Name":"sample string 2","URL":"sample string 3"},{"CID":1,"Name":"sample string 2","URL":"sample string 3"}]}

application/xml, text/xml

Sample:
<ResponseOfArrayOfChannelsEntityQzIzD0mn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGH.NxtGN.BO.Common">
  <Body>
    <ChannelsEntity>
      <CID>1</CID>
      <Name>sample string 2</Name>
      <URL>sample string 3</URL>
    </ChannelsEntity>
    <ChannelsEntity>
      <CID>1</CID>
      <Name>sample string 2</Name>
      <URL>sample string 3</URL>
    </ChannelsEntity>
  </Body>
  <Message>sample string 1</Message>
  <Status>true</Status>
</ResponseOfArrayOfChannelsEntityQzIzD0mn>