White Label Admin - Get all white label projects

White Label Admin - Get all white label projects

get

White label admin only API to get the list of all projects.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

Query parameters
activeintegerOptional

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

sortstringOptional

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
filtersstringOptional

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

Example: billable:true
limitintegerOptional

Maximum number of results

offsetintegerOptional

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

searchstringOptional

Search query

Example: <id> <name>
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/whitelabel/projects HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "total": 1,
  "projects": [
    {
      "id": 1,
      "name": "Water hammer detection",
      "description": "text",
      "created": "2019-07-21T17:32:28Z",
      "owner": "text",
      "ownerUserId": 1,
      "ownerOrganizationId": 1,
      "lastAccessed": "2019-07-21T17:32:28Z",
      "whitelabelId": 1,
      "tier": "free",
      "category": "kws",
      "deletedDate": "2025-06-30T23:02:07.320Z"
    }
  ]
}

Last updated

Was this helpful?