Error Handling
- Last UpdatedJun 19, 2025
- 1 minute read
- Engineering
- Integration Service 4.0
- Integrators
Error Response
AVEVA Integration Service APIs returns exceptions in the HTTP response body when something goes wrong. An exception has up to two properties, Code and Message.
{
"error": {
"code": "404",
"message": "The requested acknowledgement id is not available."
}
}
Return Codes
The REST API uses standard HTTP return codes and status codes while handling errors. The following table lists the HTTP return codes and status codes, and the corresponding API error messages.
|
HTTP Return Code |
HTTP Status Code |
Error Message |
|---|---|---|
|
200 |
OK |
- |
|
201 |
Created |
- |
|
204 |
No Content |
Request did not return any data. Invalid request /no data in resource. |
|
400 |
Bad Request |
One or more filters in the request input is not valid. |
|
401 |
Unauthorized |
Server failed to authenticate the request. Please provide valid credentials. |
|
404 |
Not Found |
The specified resource does not exist. |
|
405 |
Method Not Allowed |
This operation is not supported. |
|
500 |
Internal Server Error |
Internal Server Error. |