GET api/ERP/Jobs/GetAllYardsCBX

Gets all yard locations

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Yard location collection

Collection of YardType
NameDescriptionTypeAdditional information
LocID

integer

None.

Symbol

string

None.

Location

string

None.

IsYard

boolean

None.

IsInactive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LocID": 1,
    "Symbol": "sample string 2",
    "Location": "sample string 3",
    "IsYard": true,
    "IsInactive": true
  },
  {
    "LocID": 1,
    "Symbol": "sample string 2",
    "Location": "sample string 3",
    "IsYard": true,
    "IsInactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfYardType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP">
  <YardType>
    <IsInactive>true</IsInactive>
    <IsYard>true</IsYard>
    <LocID>1</LocID>
    <Location>sample string 3</Location>
    <Symbol>sample string 2</Symbol>
  </YardType>
  <YardType>
    <IsInactive>true</IsInactive>
    <IsYard>true</IsYard>
    <LocID>1</LocID>
    <Location>sample string 3</Location>
    <Symbol>sample string 2</Symbol>
  </YardType>
</ArrayOfYardType>