/problems/incompatible-installation-variant⚓︎
This is a description of a specific error response that you can receive when using the INVERS OneAPI via REST.1
Check out our API Basics to learn more about the basic structure of all error responses and to find out how you should handle them.
{
"type": "/problems/incompatible-installation-variant",
"type_documentation": "https://developers.invers.com/problems/incompatible-installation-variant",
"title": "Incompatible installation variant.",
"status": 409,
"detail": "…",
"flow_id": "5e77e3e3-48ab-4955-8ab3-1c62339096ab"
}
Meaning⚓︎
This problem type occurs when the installation variant does not support one or more of the desired configuration values.
Details⚓︎
- Use the error response’s
typeproperty to handle specific errors and exception handling within your application. It’s comparable to an error code. - The
detailproperty contains additional, more human-readable information about the problem or error. This is explanatory text and you should not have any exception handling and error handling code depend on it, as it may change.
Detail examples⚓︎
The following examples are typical texts which you might receive in the error response’s detail property. Note that it is not a complete list of all possible cases. Therefore expect to receive error responses with a detail property value not listed below.
Example problem details⚓︎
OBD alarm configuration is only supported for OBD installations.
The CloudBoxx configuration is incompatible with the telematics unit’s installation variant. The configuration is only supported for OBD installation variants.
Possible solutions:
- Avoid configuring OBD alarm for non-OBD installation variants.
-
The
flow_idis specific to each API call, so it will be different in your case. However,type,titleandstatuswill match your actual error response if you receive the error described on this page. ↩