Skip to main content
GET
/
api
/
organizations
/
{organizationId}
/
whitelabel
/
organizations
White Label Admin - Get all organizations within a white label
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "total": 123,
  "organizations": [
    {
      "id": 1,
      "name": "Edge Impulse Inc.",
      "created": "2019-08-31T17:32:28Z",
      "privateProjectCount": 123,
      "logo": "<string>",
      "readme": "<string>",
      "experiments": [
        "<string>"
      ],
      "domain": "<string>",
      "whitelabelId": 123,
      "billable": true,
      "entitlementLimits": {
        "totalStorage": 123,
        "computeTimePerYear": 123,
        "gpuComputeTimePerYear": 123,
        "numberOfProjects": 123,
        "numberOfUsers": 123
      }
    }
  ],
  "error": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Query Parameters

active
integer

Whether to search for entities (users, orgs) active in the last X days

includeDeleted
boolean

Whether to include deleted entities (users, projects, orgs)

sort
string

Fields and order to sort query by Comma separated list of fields to sort query by. Prefix with a minus (-) sign to indicate descending order. Default order is ascending

Example:

"id,-name"

filters
string

Comma separated list of filters to apply to the query. Filters should be in the format 'field:value'.

Example:

"billable:true"

limit
integer

Maximum number of results

offset
integer

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

Search query

Example:

"<id> <name>"

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

total
integer
required
organizations
object[]
required

Array with organizations

error
string

Optional error description (set if 'success' was false)