GET api/RemotePackerPressure
A method returning all RemotePackerPressures that are possible to assign to vehicles.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of RemotePackerPressureName | Description | Type | Additional information |
---|---|---|---|
RemotePackerPressureId |
A unique identifier for this record, it is used in the patch command to assign a RemotePackerPressure to a vehicle. |
integer |
None. |
WasteTypeSequence |
A unique identifier indicating a waste type, not to be confused with WasteTypeId elsewhere which is unrelated. |
byte |
None. |
WasteTypeName |
An indication of the name of the waste type. |
string |
None. |
PressureSettingSequence |
A unique identifier indicating a combination of barrier and packer pressure settings, not to be confused with RemotePackerPressureId elsewhere which is unrelated. |
byte |
None. |
BarrierPressure |
A measurement of pressure at the point of the packer barrier. |
byte |
None. |
PackerPressure |
A measurement of pressure at the point of the packer. |
byte |
None. |
Response Formats
application/json, text/json
Sample:
[ { "RemotePackerPressureId": 1, "WasteTypeSequence": 64, "WasteTypeName": "sample string 3", "PressureSettingSequence": 64, "BarrierPressure": 64, "PackerPressure": 64 }, { "RemotePackerPressureId": 1, "WasteTypeSequence": 64, "WasteTypeName": "sample string 3", "PressureSettingSequence": 64, "BarrierPressure": 64, "PackerPressure": 64 } ]
application/xml, text/xml
Sample:
<ArrayOfRemotePackerPressure xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <RemotePackerPressure> <RemotePackerPressureId>1</RemotePackerPressureId> <WasteTypeSequence>64</WasteTypeSequence> <WasteTypeName>sample string 3</WasteTypeName> <PressureSettingSequence>64</PressureSettingSequence> <BarrierPressure>64</BarrierPressure> <PackerPressure>64</PackerPressure> </RemotePackerPressure> <RemotePackerPressure> <RemotePackerPressureId>1</RemotePackerPressureId> <WasteTypeSequence>64</WasteTypeSequence> <WasteTypeName>sample string 3</WasteTypeName> <PressureSettingSequence>64</PressureSettingSequence> <BarrierPressure>64</BarrierPressure> <PackerPressure>64</PackerPressure> </RemotePackerPressure> </ArrayOfRemotePackerPressure>