GET api/BroadcastV770/TVChannelInfo?channelId={channelId}&sign={sign}&stamp={stamp}

单个频道信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
channelId

integer

Default value is 0

sign

string

Default value is

stamp

string

Default value is

Body Parameters

None.

Response Information

Resource Description

ZaiMieApp.WebApi.ViewModel.ResultDataOfZaiMieApp.WebApi.ViewModel.LiveChannel
NameDescriptionTypeAdditional information
recordsetCount

integer

None.

pageSize

integer

None.

page

integer

None.

allPage

integer

None.

message

string

None.

success

boolean

None.

code

integer

None.

data

Collection of ZaiMieApp.WebApi.ViewModel.LiveChannel

None.

Response Formats

application/json, text/json

Sample:
{
  "recordsetCount": 1,
  "pageSize": 2,
  "page": 3,
  "allPage": 4,
  "message": "sample string 5",
  "success": true,
  "code": 7,
  "data": [
    {
      "Id": 1,
      "SimpleName": "sample string 2",
      "ChineseName": "sample string 3",
      "Intro": "sample string 4",
      "Icon": "sample string 5",
      "PlayStreamUrl": "sample string 6",
      "IsForbidden": true,
      "Backgroundlmg": "sample string 8"
    },
    {
      "Id": 1,
      "SimpleName": "sample string 2",
      "ChineseName": "sample string 3",
      "Intro": "sample string 4",
      "Icon": "sample string 5",
      "PlayStreamUrl": "sample string 6",
      "IsForbidden": true,
      "Backgroundlmg": "sample string 8"
    }
  ]
}

application/xml, text/xml

Sample:
<ResultDataOfLiveChannelPr2Hy9OI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZaiMieApp.WebApi.ViewModel">
  <allPage>4</allPage>
  <code>7</code>
  <data>
    <LiveChannel>
      <Backgroundlmg>sample string 8</Backgroundlmg>
      <ChineseName>sample string 3</ChineseName>
      <Icon>sample string 5</Icon>
      <Id>1</Id>
      <Intro>sample string 4</Intro>
      <IsForbidden>true</IsForbidden>
      <PlayStreamUrl>sample string 6</PlayStreamUrl>
      <SimpleName>sample string 2</SimpleName>
    </LiveChannel>
    <LiveChannel>
      <Backgroundlmg>sample string 8</Backgroundlmg>
      <ChineseName>sample string 3</ChineseName>
      <Icon>sample string 5</Icon>
      <Id>1</Id>
      <Intro>sample string 4</Intro>
      <IsForbidden>true</IsForbidden>
      <PlayStreamUrl>sample string 6</PlayStreamUrl>
      <SimpleName>sample string 2</SimpleName>
    </LiveChannel>
  </data>
  <message>sample string 5</message>
  <page>3</page>
  <pageSize>2</pageSize>
  <recordsetCount>1</recordsetCount>
  <success>true</success>
</ResultDataOfLiveChannelPr2Hy9OI>