GET ToDpr/GetGrainSettlementToDPR

Returns a list of ToDPRs.

Request Information

URI Parameters

Body Parameters

Response Information

Resource Description

Returns a list of ToDPRs.

AgvDPR
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many DPR JSON dictionaries.

string
ToDPRList

JSON dictionary of DPR.

Collection of DPR

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "sample string 3",
  "ToDPRList": [
    {
      "Type": "sample string 1"
    },
    {
      "Type": "sample string 1"
    }
  ]
}

application/xml, text/xml

Sample:
<AgvDPR xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Settlement">
  <Count>sample string 3</Count>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
  <ToDPRList>
    <DPR>
      <Type>sample string 1</Type>
    </DPR>
    <DPR>
      <Type>sample string 1</Type>
    </DPR>
  </ToDPRList>
</AgvDPR>