GET api/Prelog/padtransporterlist

Gets the pad Transporter list.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Transporter List

Collection of TransporterResponseList
NameDescriptionTypeAdditional information
ID

integer

None.

TransporterName

string

None.

TransporterCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "TransporterName": "sample string 2",
    "TransporterCode": "sample string 3"
  },
  {
    "ID": 1,
    "TransporterName": "sample string 2",
    "TransporterCode": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransporterResponseList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <TransporterResponseList>
    <ID>1</ID>
    <TransporterCode>sample string 3</TransporterCode>
    <TransporterName>sample string 2</TransporterName>
  </TransporterResponseList>
  <TransporterResponseList>
    <ID>1</ID>
    <TransporterCode>sample string 3</TransporterCode>
    <TransporterName>sample string 2</TransporterName>
  </TransporterResponseList>
</ArrayOfTransporterResponseList>