GET
/
api
/
organizations
/
{organizationId}
/
whitelabel
/
projects
White Label Admin - Get all white label projects
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/projects \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "total": 123,
  "projects": [
    {
      "id": 1,
      "name": "Water hammer detection",
      "description": "<string>",
      "created": "2019-07-21T17:32:28Z",
      "owner": "<string>",
      "ownerUserId": 123,
      "ownerOrganizationId": 123,
      "lastAccessed": "2019-07-21T17:32:28Z",
      "whitelabelId": 123,
      "tier": "free",
      "category": "kws",
      "deletedDate": "2023-11-07T05:31:56Z"
    }
  ]
}

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

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.