GET api/ERP/Jobs/GetAllYardsCBX

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

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:
<ArrayOfDataTypes.YardType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
  <DataTypes.YardType>
    <IsInactive>true</IsInactive>
    <IsYard>true</IsYard>
    <LocID>1</LocID>
    <Location>sample string 3</Location>
    <Symbol>sample string 2</Symbol>
  </DataTypes.YardType>
  <DataTypes.YardType>
    <IsInactive>true</IsInactive>
    <IsYard>true</IsYard>
    <LocID>1</LocID>
    <Location>sample string 3</Location>
    <Symbol>sample string 2</Symbol>
  </DataTypes.YardType>
</ArrayOfDataTypes.YardType>