White Label Admin - Get all white label projects
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
sortstringOptionalExample:
Comma separated list of fields to sort query by. Prefix with a minus (-) sign to indicate descending order. Default order is ascending
id,-name
filtersstringOptionalExample:
Comma separated list of filters to apply to the query. Filters should be in the format 'field:value'.
billable:true
limitintegerOptional
Maximum number of results
offsetintegerOptional
Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
searchstringOptionalExample:
Search query
<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"
}
]
}
PreviousWhite Label Admin - Get user jobsNextWhite Label Admin - Create a new project within white label context.
Last updated
Was this helpful?