List balenaOS releases

List the supported balenaOS versions for a device type

get

List balenaOS releases Resource Fields

Field


GET /v7/release

To request a list of the supported balenaOS versions for a particular device type, the DEVICE TYPE SLUG parameter is required. Even though this query only selects the raw_version field, you can additionally specify any of the fields found in the release resource. The Authorization header is optional.

Usage Variations


List the supported balenaOS versions for a private device type

GET /v7/release?$select=raw_version&$filter=(is_final eq true) and (is_invalidated eq false) and (status eq 'success') and (semver_major gt 0) and (belongs_to__application/any(bta:(bta/is_host eq true) and (bta/is_for__device_type/any(dt:dt/slug eq '<DEVICE TYPE SLUG>'))))&$orderby=semver_major desc,semver_minor desc,semver_patch desc,revision desc

Same as above, but in order to access private device types, you must provide an authentication token.

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

Last updated

Was this helpful?