Supported Features

Each VOYO device supports different feature lists depending on the vehicle it is connected to.

GetSupportedFeatures

This request returns a feature list for the provided serial number.

Request

curl -L -X POST 'https://{DOMAIN}/voyorequest/GetSupportedFeatures

-d 'serial={SERIAL}'
-H 'Accept: application/json'
-H 'Authorization: Bearer {APIKEY}'
Parameter Description
serial VOYO Device serial number

Error Responses

    HTTP/1.1 400 Bad Request
    HTTP/1.1 401 Unauthorized
/// Request requires "serial"
{ "error":"Requires Device Identifier!" }

/// "serial" is not registered to provided "apikey"
{ "error":"Unauthorized Device Requested!" }

// There is no record of this device
{ "error":"Device does not exist!" }

Success Responses

Features have the following return values:

1 0
Supported Not supported
{ 
    "error":"Success!", "lock":"", "unlock":"", "alarm":"", "trunk":"", "abs":"", "steering":"",
    "diagnostics":"", "odometer":"", "doors":"", "brake":"", "shifter":"", "gear":"", "tires":"",
    "speed":"", "rpm":"", "accelerator":"", "coolant":"", "oilpressure":"", "oillife":"", "fuellevel":"",
    "engineload":"", "fuelconsumption":"", "barometer":"", "ambientair":"", "intakeair":"", "stateofcharge":"",
    "keyposition":"", "parkingbrake":"", "wipers":"", "headlight":"", "foglight":"", "leftsignal":"", "rightsignal":"",
    "hazards":"", "interiorlight":"", "hood":"", "horn":"", "driverbelt":"", "passengerbelt":"", "rearleftbelt":"",
    "rearrightbelt":"", "ac":"", "passengeroccupant":"", "traction":"", "stability":"", "trunkstate":"", "iselectric":""
}