Device tag

Available Fields

Field

id

device

tag_key

value


Examples

Get all tags by device UUID

GET "https://api.balena-cloud.com/v7/device_tag?\$filter=device/uuid%20eq%20'<UUID>'" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <AUTH_TOKEN>" 

Create a new device tag

POST "https://api.balena-cloud.com/v7/device_tag" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <AUTH_TOKEN>" \
--data '{
    "device": "<DEVICE ID>",
    "tag_key": "<KEY>",
    "value": "<VALUE>"
}'

Update a device tag

Delete a device tag given its database ID

Last updated

Was this helpful?