GET
/
api
/
organizations
/
{organizationId}
/
whitelabel
/
users
White Label Admin - Get all white label users
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/users \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "total": 123,
  "users": [
    {
      "id": 1,
      "username": "janjongboom",
      "email": "jan@edgeimpulse.com",
      "name": "Jan Jongboom",
      "photo": "https://usercdn.edgeimpulse.com/photos/1.jpg",
      "created": "2019-08-31T17:32:28Z",
      "lastSeen": "2019-08-31T17:32:28Z",
      "activated": true,
      "from_evaluation": true,
      "tier": "free",
      "deletedDate": "2024-01-01T00:00:00Z"
    }
  ]
}

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

tier
enum<string>

Whether to search for free, community plus, professional, or enterprise entities (users, projects)

Available options:
free,
community-plus,
professional,
enterprise
fields
string

Comma separated list of fields to fetch in a query

Example:

"id,name"

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.