Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Device Resource


(warning)

Microvisor Public Beta

Microvisor is in a pre-release phase and the information contained in this document is subject to change. Some features referenced below may not be fully available until Microvisor's General Availability (GA) release.

A Device instance represents a single Microvisor-empowered IoT device. For clarity, device (no cap) refers to physical hardware. Device (initial cap) refers to a Device API resource.

Device resources are accessed at this endpoint:


_10
https://microvisor.twilio.com/v1/Devices

Make a GET request to the endpoint to receive a list (in JSON) of all Device resources.

Every Device instance can be referenced in the API either by its unique SID or a user-defined unique name:


_10
https://microvisor.twilio.com/v1/Devices/{sid}
_10
https://microvisor.twilio.com/v1/Devices/{uniqueName}

The Device instance representing a real device is used to deploy uploaded code to that device.

(information)

Device Properties

device-properties page anchor
Property nameTypePIIDescription
sidSID<UV>
Not PII

A 34-character string that uniquely identifies this Device.

Pattern: ^UV[0-9a-fA-F]{32}$Min length: 34Max length: 34

unique_namestring

A developer-defined string that uniquely identifies the Device. This value must be unique for all Devices on this Account. The unique_name value may be used as an alternative to the sid in the URL path to address the resource.


account_sidSID<AC>

The unique SID identifier of the Account.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

appobject

Information about the target App and the App reported by this Device. Contains the properties target_sid, date_targeted, update_status (one of up-to-date, pending and error), update_error_code, reported_sid and date_reported.


loggingobject

Object specifying whether application logging is enabled for this Device. Contains the properties enabled and date_expires.


date_createdstring<date-time>

The date that this Device was created, given in ISO 8601(link takes you to an external page) format.


date_updatedstring<date-time>

The date that this Device was last updated, given in ISO 8601(link takes you to an external page) format.


urlstring<uri>

The URL of this resource.


linksobject<uri-map>

The absolute URLs of related resources.


The table below describes the available status values of a Device instance:

StatusDescription
up-to-dateThe device has received with the most recent application code deployed to it
scheduledApplication code has been marked for deployment but has yet to be installed on the device
errorApplication code marked for deployment could not be downloaded for some reason

GET https://microvisor.twilio.com/v1/Devices/{Sid}

Path parameters

path-parameters page anchor
Property nameTypeRequiredPIIDescription
Sidstringrequired

A 34-character string that uniquely identifies this Device.

Request a single Device resource

request-a-single-device-resource page anchor
curl

_10
curl -X GET "https://microvisor.twilio.com/v1/Devices/UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
_10
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Output

_25
{
_25
"sid": "UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
_25
"unique_name": "This is my device; there are many like it.",
_25
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"app": {
_25
"target_sid": "KAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"target_hash": null,
_25
"date_targeted": "2021-01-01T12:34:56Z",
_25
"update_status": "up-to-date",
_25
"update_error_code": 0,
_25
"reported_sid": "KAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"date_reported": "2021-01-01T12:34:56Z"
_25
},
_25
"logging": {
_25
"enabled": true,
_25
"date_expires": "2021-01-01T12:34:56Z"
_25
},
_25
"date_created": "2021-01-01T12:34:56Z",
_25
"date_updated": "2021-01-01T12:34:56Z",
_25
"url": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"links": {
_25
"device_configs": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Configs",
_25
"device_secrets": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Secrets"
_25
}
_25
}


GET https://microvisor.twilio.com/v1/Devices

Property nameTypeRequiredPIIDescription
PageSizeintegerOptional

How many resources to return in each list page. The default is 50, and the maximum is 1000.

Minimum: 1Maximum: 1000

PageintegerOptional

The page index. This value is simply for client state.

Minimum: 0

PageTokenstringOptional

The page token. This is provided by the API.

Request a list of Device resources

request-a-list-of-device-resources page anchor
curl

_10
curl -X GET "https://microvisor.twilio.com/v1/Devices?PageSize=20" \
_10
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Output

_12
{
_12
"devices": [],
_12
"meta": {
_12
"page": 0,
_12
"page_size": 50,
_12
"first_page_url": "https://microvisor.twilio.com/v1/Devices?PageSize=50&Page=0",
_12
"previous_page_url": null,
_12
"url": "https://microvisor.twilio.com/v1/Devices?PageSize=50&Page=0",
_12
"next_page_url": null,
_12
"key": "devices"
_12
}
_12
}


POST https://microvisor.twilio.com/v1/Devices/{Sid}

Property nameTypeRequiredPIIDescription
Sidstringrequired

A 34-character string that uniquely identifies this Device.

Property nameTypeRequiredPIIDescription
UniqueNamestringOptional

A unique and addressable name to be assigned to this Device by the developer. It may be used in place of the Device SID.


TargetAppstringOptional

The SID or unique name of the App to be targeted to the Device.


LoggingEnabledbooleanOptional

A Boolean flag specifying whether to enable application logging. Logs will be enabled or extended for 24 hours.


RestartAppbooleanOptional

Set to true to restart the App running on the Device.

Give a Device a memorable name

give-a-device-a-memorable-name page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_18
// Download the helper library from https://www.twilio.com/docs/node/install
_18
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_18
_18
// Find your Account SID and Auth Token at twilio.com/console
_18
// and set the environment variables. See http://twil.io/secure
_18
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_18
const authToken = process.env.TWILIO_AUTH_TOKEN;
_18
const client = twilio(accountSid, authToken);
_18
_18
async function updateDevice() {
_18
const device = await client.microvisor.v1
_18
.devices("Sid")
_18
.update({ uniqueName: "My Device Name" });
_18
_18
console.log(device.uniqueName);
_18
}
_18
_18
updateDevice();

Output

_25
{
_25
"sid": "Sid",
_25
"unique_name": "My Device Name",
_25
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"app": {
_25
"target_sid": "KAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"target_hash": null,
_25
"date_targeted": "2021-01-01T12:34:56Z",
_25
"update_status": "pending",
_25
"update_error_code": 0,
_25
"reported_sid": null,
_25
"date_reported": "2021-01-01T12:34:56Z"
_25
},
_25
"logging": {
_25
"enabled": false,
_25
"date_expires": null
_25
},
_25
"date_created": "2015-07-30T20:00:00Z",
_25
"date_updated": "2015-07-30T20:00:00Z",
_25
"url": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"links": {
_25
"device_configs": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Configs",
_25
"device_secrets": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Secrets"
_25
}
_25
}

(information)

Info

Remember, a Device can be identified either by is SID, or by its unique name, if you have applied one.

Deploy an App to the Device

deploy-an-app-to-the-device page anchor
curl

_10
curl -X POST "https://microvisor.twilio.com/v1/Devices/Sid" \
_10
--data-urlencode "TargetApp=KAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
_10
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Output

_25
{
_25
"sid": "Sid",
_25
"unique_name": "UniqueName",
_25
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"app": {
_25
"target_sid": "KAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"target_hash": null,
_25
"date_targeted": "2021-01-01T12:34:56Z",
_25
"update_status": "pending",
_25
"update_error_code": 0,
_25
"reported_sid": null,
_25
"date_reported": "2021-01-01T12:34:56Z"
_25
},
_25
"logging": {
_25
"enabled": false,
_25
"date_expires": null
_25
},
_25
"date_created": "2015-07-30T20:00:00Z",
_25
"date_updated": "2015-07-30T20:00:00Z",
_25
"url": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"links": {
_25
"device_configs": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Configs",
_25
"device_secrets": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Secrets"
_25
}
_25
}

Enable application code logging

enable-application-code-logging page anchor
curl

_10
curl -X POST "https://microvisor.twilio.com/v1/Devices/UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
_10
--data-urlencode "LoggingEnabled=true" \
_10
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Output

_25
{
_25
"sid": "UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
_25
"unique_name": "UniqueName",
_25
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"app": {
_25
"target_sid": "KAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"target_hash": null,
_25
"date_targeted": "2021-01-01T12:34:56Z",
_25
"update_status": "pending",
_25
"update_error_code": 0,
_25
"reported_sid": null,
_25
"date_reported": "2021-01-01T12:34:56Z"
_25
},
_25
"logging": {
_25
"enabled": false,
_25
"date_expires": null
_25
},
_25
"date_created": "2015-07-30T20:00:00Z",
_25
"date_updated": "2015-07-30T20:00:00Z",
_25
"url": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"links": {
_25
"device_configs": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Configs",
_25
"device_secrets": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Secrets"
_25
}
_25
}

(information)

Info

Application code logging is enabled by default.

curl

_10
curl -X POST "https://microvisor.twilio.com/v1/Devices/UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
_10
--data-urlencode "RestartApp=true" \
_10
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Output

_25
{
_25
"sid": "UVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
_25
"unique_name": "UniqueName",
_25
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"app": {
_25
"target_sid": "KAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"target_hash": null,
_25
"date_targeted": "2021-01-01T12:34:56Z",
_25
"update_status": "pending",
_25
"update_error_code": 0,
_25
"reported_sid": null,
_25
"date_reported": "2021-01-01T12:34:56Z"
_25
},
_25
"logging": {
_25
"enabled": false,
_25
"date_expires": null
_25
},
_25
"date_created": "2015-07-30T20:00:00Z",
_25
"date_updated": "2015-07-30T20:00:00Z",
_25
"url": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_25
"links": {
_25
"device_configs": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Configs",
_25
"device_secrets": "https://microvisor.twilio.com/v1/Devices/UVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Secrets"
_25
}
_25
}

Restarting an app using this call will instruct Microvisor to start the loaded application afresh. This can be a useful call to make during remote debugging, particularly if your application is experiencing unexpected behavior right after it starts.


Rate this page: