GET v1/feeders

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

FeedersResource
NameDescriptionTypeAdditional information
Feeders

Collection of FeederDto

None.

Response Formats

application/json, text/json

Sample:
{
  "feeders": [
    {
      "id": 1,
      "channel": 2,
      "feederLocation": 3,
      "feederOutput": 4,
      "primaryInput": 5
    },
    {
      "id": 1,
      "channel": 2,
      "feederLocation": 3,
      "feederOutput": 4,
      "primaryInput": 5
    }
  ]
}

application/xml, text/xml

Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
  <Feeders>
    <Feeder>
      <Channel>2</Channel>
      <FeederLocation>3</FeederLocation>
      <FeederOutput>4</FeederOutput>
      <Id>1</Id>
      <PrimaryInput>5</PrimaryInput>
    </Feeder>
    <Feeder>
      <Channel>2</Channel>
      <FeederLocation>3</FeederLocation>
      <FeederOutput>4</FeederOutput>
      <Id>1</Id>
      <PrimaryInput>5</PrimaryInput>
    </Feeder>
  </Feeders>
</Resources>