When trying to make a call to Service Desk Manager via Web Services REST API, the following error is received:
"Error": {
"ErrorCode": 110,
"ErrorMessage": "Invalid CI type ",
"HTTPResponseCode": "BAD_REQUEST",
"HTTPResponseCodeValue": 400
}
}
Service Desk Manager 17.4.x
NIM-CA for Service Management
There is a syntax error in the request
The URL is case sensitive so if you have the following:
curl --location 'https://<SERVER_URL>:<PORT>/ca-nim-sm/api/v2/request/cr:<OBJECT_ID>/comment' \
This URL will not work.
It should be corrected as:
curl --location 'https://<SERVER_URL>:<PORT>/ca-nim-sm/api/v2/Request/cr:<OBJECT_ID>/comment' \
Note that the request section of the original query is updated to Request and this should be successful