GET api/ERP/Jobs/GetAllEquipmentSizesCBX
Gets all equipment sizes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Equipment collection
Collection of EquipmentType| Name | Description | Type | Additional 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:
<ArrayOfEquipmentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP">
<EquipmentType>
<ExcludeFromPerformanceMetrics>true</ExcludeFromPerformanceMetrics>
<SizeID>1</SizeID>
<SizeName>sample string 2</SizeName>
<Status>3</Status>
</EquipmentType>
<EquipmentType>
<ExcludeFromPerformanceMetrics>true</ExcludeFromPerformanceMetrics>
<SizeID>1</SizeID>
<SizeName>sample string 2</SizeName>
<Status>3</Status>
</EquipmentType>
</ArrayOfEquipmentType>