GET api/IdealValuesByAges

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of IdealValuesByAge
NameDescriptionTypeAdditional information
Id

integer

None.

BirdType

integer

None.

AgeFrom

integer

None.

AgeTo

integer

None.

Weight

integer

None.

Food

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "BirdType": 2,
    "AgeFrom": 3,
    "AgeTo": 4,
    "Weight": 5,
    "Food": 6
  },
  {
    "Id": 1,
    "BirdType": 2,
    "AgeFrom": 3,
    "AgeTo": 4,
    "Weight": 5,
    "Food": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfIdealValuesByAge xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoultryManagementAPI.Models">
  <IdealValuesByAge>
    <AgeFrom>3</AgeFrom>
    <AgeTo>4</AgeTo>
    <BirdType>2</BirdType>
    <Food>6</Food>
    <Id>1</Id>
    <Weight>5</Weight>
  </IdealValuesByAge>
  <IdealValuesByAge>
    <AgeFrom>3</AgeFrom>
    <AgeTo>4</AgeTo>
    <BirdType>2</BirdType>
    <Food>6</Food>
    <Id>1</Id>
    <Weight>5</Weight>
  </IdealValuesByAge>
</ArrayOfIdealValuesByAge>