Device
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
GET /v7/device HTTP/1.1
Host: api.balena-cloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
GET /v7/device({ID}) HTTP/1.1
Host: api.balena-cloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
DELETE /v7/device({ID}) HTTP/1.1
Host: api.balena-cloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"belongs_to__application": <FLEET ID>
}{
"is_active": false
}PATCH /v7/device({ID}) HTTP/1.1
Host: api.balena-cloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40
{
"is_pinned_on__release": "<RELEASE ID>"
}GET /v7/device(uuid='{UUID}') HTTP/1.1
Host: api.balena-cloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
PATCH /v7/device(uuid='{UUID}') HTTP/1.1
Host: api.balena-cloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40
{
"is_pinned_on__release": "<RELEASE ID>"
}