Device config variable

Get all device config variables for a device

get

Device config variable Resource Fields

Field

id

device

value

name


GET /v7/device_config_variable

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
get
/v7/device_config_variable

Create a device config variable

post

POST /v7/device_config_variable

Request Body:

{
    "device": <DEVICE ID>,
    "name": <NAME>,
    "value": <VALUE>
}
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
objectOptional
post
/v7/device_config_variable

Remove a device config variable

delete

DELETE /v7/device_config_variable(<ID>)

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
IDanyRequired
delete
/v7/device_config_variable({ID})

Update a device config variable

patch

PATCH /v7/device_config_variable(<ID>)

Request Body:

{
    "value": <NEW VALUE>
}
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
IDanyRequired
Body
objectOptional
patch
/v7/device_config_variable({ID})

Last updated

Was this helpful?