GET api/BinManageAPI/BindTrolleyTypeDropDown

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfTrolleyTypeDetails
NameDescriptionTypeAdditional information
Data

Collection of TrolleyTypeDetails

None.

Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "BagType": "sample string 1",
      "Id": 2
    },
    {
      "BagType": "sample string 1",
      "Id": 2
    }
  ],
  "Success": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiResponseOfTrolleyTypeDetailsmixuTL1o xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BRS.Common">
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BRS.Entity">
    <d2p1:TrolleyTypeDetails>
      <d2p1:BagType>sample string 1</d2p1:BagType>
      <d2p1:Id>2</d2p1:Id>
    </d2p1:TrolleyTypeDetails>
    <d2p1:TrolleyTypeDetails>
      <d2p1:BagType>sample string 1</d2p1:BagType>
      <d2p1:Id>2</d2p1:Id>
    </d2p1:TrolleyTypeDetails>
  </Data>
</ApiResponseOfTrolleyTypeDetailsmixuTL1o>