Pass Through Call to ServiceDispatch's "Update Call Status Info" APIThis RESTified API will perform a pass-through call to the ServiceDispatch sub-system's "Update Call Status Info" API (when configured). URL Panel |
---|
borderColor | grey |
---|
bgColor | whitesmoke |
---|
borderStyle | solid |
---|
| PUT /up/v5/rest/dispatch/updateCallStatusInfo
|
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 "Update Call Status Info" API. Code Block |
---|
| {
"Id": "CT.2019-4-30.100192",
"MfgSvcrAcct": "FSSTEST",
"CallStatus": "ACCEPTED",
"CallReasonCode": ""
} |
UpdateCallStatusInfo Object PropertiesProperty | Type | Required? | Description | ServiceDispatch Field Mapping |
---|
Id | string | No | Pass through parameter to the ServiceDispatch "Update Call Status Info" API. | CallNo | MfgSvcrAcct | string | No | Pass through parameter to the ServiceDispatch "Update Call Status Info" API. | MfgSvcrAcct | CallStatus | string | No | Pass through parameter to the ServiceDispatch "Update Call Status Info" API. | CallStatus | CallReasonCode | string | No | Pass through parameter to the ServiceDispatch "Update Call Status Info" API. | CallReasonCode |
HTTP ResponseSuccessOn success, a JSON-formatted version of the ServiceDispatch "Update Call Status Info" API response will be returned. Code Block |
---|
| {
"MFGID": "9999",
"Id": "CT.2019-4-30.100192",
"AckMsg": "CALL DETAIL UPDTED SUCCESSFUL"
} |
Error On error, a JSON-formatted version of the ServiceDispatch "Update Call Status 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. |