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,
  "error": "<string>",
  "total": 123,
  "organizations": [
    {
      "id": 1,
      "name": "Edge Impulse Inc.",
      "logo": "<string>",
      "created": "2019-08-31T17:32:28Z",
      "readme": "<string>",
      "experiments": [
        "<string>"
      ],
      "domain": "<string>",
      "whitelabelId": 123,
      "billable": true,
      "privateProjectCount": 123,
      "entitlementLimits": {
        "totalStorage": 123,
        "computeTimePerYear": 123,
        "gpuComputeTimePerYear": 123,
        "numberOfProjects": 123,
        "numberOfUsers": 123
      }
    }
  ]
}

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

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

The response is of type object.