Pass Through Call to ServiceDispatch's "Update Problem Info" APIThis RESTified API will perform a pass-through call to the ServiceDispatch sub-system's "Update Problem Info" API (when configured). URL Panel |
---|
borderColor | grey |
---|
bgColor | whitesmoke |
---|
borderStyle | solid |
---|
| PUT /up/v5/rest/dispatch/updateProblemInfo
|
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 Problem Info" API. Code Block |
---|
| {
"Id": "CT.2019-4-30.100192",
"MfgSvcrAcct": "FSSTEST",
"ProbCode": "test1",
"ProbType": "test1",
"ProbDesc": "Not working"
} |
UpdateProblemInfo Object PropertiesProperty | Type | Required? | Description | ServiceDispatch Field Mapping: ServiceDispatch |
---|
Id | string | No | Pass through parameter to the ServiceDispatch "Update Problem Info" API. | CallNo | MfgSvcrAcct | string | No | Pass through parameter to the ServiceDispatch "Update Problem Info" API. | MfgSvcrAcct | ProbCode | string | No | Pass through parameter to the ServiceDispatch "Update Problem Info" API. | ProbCode | ProbType | string | No | Pass through parameter to the ServiceDispatch "Update Problem Info" API. | ProbType | ProbDesc | string | No | Pass through parameter to the ServiceDispatch "Update Problem Info" API. | ProbDesc |
HTTP ResponseSuccessOn success, a JSON-formatted version of the ServiceDispatch "Update Problem 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 Problem Info" API response will be returned. Code Block |
---|
| {
"Success": false,
"Code": 9,
"Payload": {
"returnCode": {
"type": "Error",
"message": "Dispatch Error Code"
}
}
} |
|