Improve this doc
Detailed information for resources

balenaCloud API Resources

Note: We recently renamed applications to fleets and are in the process of updating our API resources. Application resources continue to function correctly and can be used to work with fleets. Find out more about the changes here.

Available fields

id
created_at
name
handle
company_name
website
industry
billing_account_code

Examples

Get all organizations associated with authenticated user

curl -X GET \
"https://api.balena-cloud.com/v6/organization" \
-H  "Content-Type: application/json"  \
-H "Authorization: Bearer <AUTH_TOKEN>" 

Get organization by ID

curl -X GET \
"https://api.balena-cloud.com/v6/organization(<ID>)" \
-H  "Content-Type: application/json"  \
-H "Authorization: Bearer <AUTH_TOKEN>" 

Get organization by handle

Uniquely identifies an organization. Handles are currently automatically generated and read-only.

curl -X GET \
"https://api.balena-cloud.com/v6/organization(handle='<HANDLE>')" \
-H  "Content-Type: application/json"  \
-H "Authorization: Bearer <AUTH_TOKEN>"