> ## Documentation Index
> Fetch the complete documentation index at: https://smartcar.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Compatibility Errors

> Thrown when Smartcar does not support a make, or feature for a vehicle.

# `MAKE_NOT_COMPATIBLE`

Smartcar is not yet compatible with this vehicle’s make in the country you specified.

```json MAKE_NOT_COMPATIBLE theme={null}
{
  "errors": [
    {
      "status": "501",
      "type": "COMPATIBILITY",
      "code": "MAKE_NOT_COMPATIBLE",
      "title": "Make Not Compatible",
      "detail": "Smartcar is not yet compatible with this vehicle’s make in the country you specified.",
      "links": {
        "about": "https://smartcar.com/docs/errors/api-errors/compatibility-errors#make-not-compatible",
      },
      "resolution": { "type": null },
    },
  ]
}
```

**Suggested User Messaging**<br />
`<your app name>` is not yet able to connect to your car brand.

<br />

# `PLATFORM_NOT_CAPABLE`

You're connected to the vehicle using an OEM integration that does not support this endpoint. This can be a result of the OEM migrating to a newer API or requiring vehicle owners to migrate to a new application they have released.

```json PLATFORM_NOT_CAPABLE theme={null}
{
  "errors": [
    {
      "status": "501",
      "type": "COMPATIBILITY",
      "code": "PLATFORM_NOT_CAPABLE",
      "title": "Platform Not Capable",
      "detail": "You're connected to the vehicle using an OEM integration that does not support this endpoint.",
      "links": {
        "about": "https://smartcar.com/docs/errors/api-errors/compatibility-errors#platform-not-capable",
      },
      "resolution": { "type": "REAUTHENTICATE" },
    },
  ]
}
```

**Troubleshooting Steps**<br />
For Tesla vehicles please have the owner re-authenticate using the latest Tesla authorization flow.

<br />

# `SMARTCAR_NOT_CAPABLE`

Smartcar does not yet support this feature for this vehicle.

```json SMARTCAR_NOT_CAPABLE theme={null}
{
  "errors": [
    {
      "status": "501",
      "type": "COMPATIBILITY",
      "code": "SMARTCAR_NOT_CAPABLE",
      "title": "Smartcar Not Capable",
      "detail": "Smartcar does not yet support this feature for this vehicle.",
      "links": {
        "about": "https://smartcar.com/docs/errors/api-errors/compatibility-errors#smartcar-not-capable",
      },
      "resolution": { "type": null },
    },
  ]
}
```

**Troubleshooting Steps**<br />
Please check that the vehicles make and engine type support the feature you are trying to use.

Please contact us to learn when this feature will become available.
If you have a vehicle that supports this feature and would like to help out, check out Smartcar’s Research Fleet.

<br />

# `VEHICLE_NOT_CAPABLE`

This error occurs when a physical limitation makes the vehicle incapable of performing your request
(e.g. battery electric vehicles are incapable of responding to read fuel requests).

```json VEHICLE_NOT_CAPABLE theme={null}
{
  "errors": [
    {
      "status": "501",
      "type": "COMPATIBILITY",
      "code": "VEHICLE_NOT_CAPABLE",
      "title": "Vehicle Not Capable",
      "detail": "The vehicle is incapable of performing your request.",
      "links": {
        "about": "https://smartcar.com/docs/errors/api-errors/compatibility-errors#vehicle-not-capable",
      },
      "resolution": { "type": null },
    },
  ]
}
```

**Suggested User Messaging**<br />
Your car is unable to perform this request.

<br />
