Pass Through Call to ServiceDispatch's "Get Shipment Info" APIThis RESTified API will perform a pass-through call to the ServiceDispatch sub-system's "Get Shipment Info" API (when configured). URL Panel |
---|
borderColor | grey |
---|
bgColor | whitesmoke |
---|
borderStyle | solid |
---|
| PUT /up/v5/rest/dispatch/getShipmentInfo
|
HTTP Request BodyThis request requires a JSON object supplied in the HTTP request body, which defines the parameters that will be passed through to the ServiceDispatch "Get Shipment Info" API. Code Block |
---|
| {
"Id": "0.616182638892496"
} |
GetShipmentInfo Object PropertiesProperty | Type | Required? | Description | ServiceDispatch Field Mapping |
---|
Id | string | No | Pass through parameter to the ServiceDispatch "Get Shipment Info" API. | CallNo |
HTTP ResponseSuccessOn success, a JSON-formatted version of the ServiceDispatch "Get Shipment Info" API response will be returned. Code Block |
---|
| {
"AckMsg": "OK",
"WorkItemCount": "0"
} |
Error On error, a JSON-formatted version of the ServiceDispatch "Get Shipment Info" API response will be returned. Code Block |
---|
| {
"Success": false,
"Code": 9,
"Payload": {
"returnCode": {
"type": "Error",
"message": "Dispatch Error Code"
}
}
}
|
Return CodesIn addition to the Standard Return Codes, and the ServiceDispatch Error codes, individual API calls made have unique codes found on their individual pages. |