Doors

values
array
required
An array of objects containing information about the state of the vehicle’s doors.
rowCount
number
Indicates the total number of door rows present in the vehicle. This field, along with columnCount, provides information about the vehicle’s door layout and the total number of doors available.
columnCount
number
Indicates the total number of door columns present in the vehicle. This field, along with rowCount, provides information about the vehicle’s door layout and the total number of doors available.
Example
{
  "values": [
    {
      "row": 0,
      "column": 0,
      "isOpen": false,
      "isLocked": true
    },
    {
      "row": 0,
      "column": 1,
      "isOpen": false,
      "isLocked": true
    }
  ],
  "rowCount": 2,
  "columnCount": 2
}

Engine Cover

isOpen
boolean
Indicates if the trunk is open.

Front Trunk

isOpen
boolean
Indicates if the trunk is open.
isLocked
boolean
Indicates if the trunk is locked.

Is Locked

value
boolean
A boolean value indicating whether the vehicle’s closures are currently locked.

Rear Trunk

isOpen
boolean
Indicates if the trunk is open.
isLocked
boolean
Indicates if the trunk is locked.

Sunroof

isOpen
boolean
Indicates if the trunk is open.

Windows

values
array
required
An array of objects, where each object represents a specific window in the vehicle.
rowCount
number
Indicates the total number of window rows present in the vehicle. This field, along with columnCount, provides information about the vehicle’s window layout and the total number of windows available.
columnCount
number
Indicates the total number of window columns present in the vehicle. This field, along with rowCount, provides information about the vehicle’s window layout and the total number of windows available.
Example
{
  "values": [
    {
      "row": 0,
      "column": 0,
      "isOpen": false
    },
    {
      "row": 0,
      "column": 1,
      "isOpen": false
    }
  ],
  "rowCount": 2,
  "columnCount": 2
}