Device Info

Information specific to a VOYO device.

Devices

Request a list of all devices connected to the account provided VOYO API key belongs to.

Request

curl -L -X GET 'https://{DOMAIN}/voyorequest/Devices

-H 'Accept: application/json'
-H 'Authorization: Bearer {APIKEY}'

Empty Response

An account with no associated devices will return the following:

    HTTP/1.1 204 No Content
{ "error":"Success!" }

Success Responses

Returns a list of VOYO devices with the following attributes:

Parameters Description
serial Unique device identifier.
name A user defined string used to identify this device.
vin The last known VIN associated with this device.
version String used to identify the current revision for this device.
mac Unique MAC address (int).
imei Unique IMEI.

mac and imei are not included for Bluetooth only units.

Example

{
    "devices":[
        {
            "serial":"",
            "name":"",
            "vin":"",
            "version":"",
            "mac":"",
            "imei":""
        },
        {
            "serial":"",
            "name":"",
            "vin":"",
            "version":""
        },        
    ]
}