operation-not-supported

MyŠkoda Public API problem type

HTTP 422 Unprocessable Entity

Type URI: https://public.api.connect.skoda-auto.cz/problems/operation-not-supported

When it occurs

An operation was requested for a vehicle that does not have the capability the operation needs. For example, only battery-electric vehicles and plug-in hybrids can charge; a vehicle without a high-voltage battery cannot execute charging operations at all.

The instance member identifies the request the problem is about.

Example response

{
  "type": "https://public.api.connect.skoda-auto.cz/problems/operation-not-supported",
  "title": "Unprocessable Content",
  "status": 422,
  "detail": "Vehicle TMBJB9NY5RF999999 does not support charging.",
  "instance": "/api/v1/vehicles/TMBJB9NY5RF999999/charging/start"
}

What to do

Do not retry - the vehicle will never accept this operation. Which capabilities a vehicle has can be checked upfront: when a part is explicitly requested via include, the vehicle detail endpoint omits it and reports an _UNSUPPORTED error code in errors[] for capabilities the vehicle lacks.

Back to the documentation