GET api/ERP/Jobs/GetAllEquipmentSizesCBX

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of EquipmentType
NameDescriptionTypeAdditional information
SizeID

integer

None.

SizeName

string

None.

Status

integer

None.

ExcludeFromPerformanceMetrics

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SizeID": 1,
    "SizeName": "sample string 2",
    "Status": 3,
    "ExcludeFromPerformanceMetrics": true
  },
  {
    "SizeID": 1,
    "SizeName": "sample string 2",
    "Status": 3,
    "ExcludeFromPerformanceMetrics": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfDataTypes.EquipmentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
  <DataTypes.EquipmentType>
    <ExcludeFromPerformanceMetrics>true</ExcludeFromPerformanceMetrics>
    <SizeID>1</SizeID>
    <SizeName>sample string 2</SizeName>
    <Status>3</Status>
  </DataTypes.EquipmentType>
  <DataTypes.EquipmentType>
    <ExcludeFromPerformanceMetrics>true</ExcludeFromPerformanceMetrics>
    <SizeID>1</SizeID>
    <SizeName>sample string 2</SizeName>
    <Status>3</Status>
  </DataTypes.EquipmentType>
</ArrayOfDataTypes.EquipmentType>