White Label Admin - Get organization information

White Label Admin - Get organization information

get

White label admin only API to list all information about an organization.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

innerOrganizationIdintegerRequired

Organization ID within the context of a white label

Query parameters
includeDeletedbooleanOptional

Whether to include deleted entities (users, projects, orgs)

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

OK

{
  "success": true,
  "error": "text",
  "cpuComputeTime": 1,
  "gpuComputeTime": 1,
  "totalComputeTime": 1,
  "billable": true,
  "entitlementLimits": {
    "totalStorage": 1,
    "computeTimePerYear": 1,
    "gpuComputeTimePerYear": 1,
    "numberOfProjects": 1,
    "numberOfUsers": 1
  },
  "computeTimeCurrentContractSince": "2025-07-12T02:43:05.645Z",
  "totalStorage": 1,
  "dailyMetrics": [
    {
      "date": "2021-01-01T00:00:00Z",
      "totalUsers": 100,
      "totalStaffUsers": 10,
      "totalProjects": 50,
      "totalCurrentContractCpuComputeTimeSeconds": 100000,
      "totalCurrentContractGpuComputeTimeSeconds": 100000,
      "totalCurrentContractComputeTimeSeconds": 100000,
      "computeTimeCalculatedSince": "2021-01-01T00:00:00Z",
      "totalStorageSizeBytes": 1000000000,
      "usersAdded": 10,
      "staffUsersAdded": 1,
      "usersDeleted": 5,
      "staffUsersDeleted": 1,
      "projectsAdded": 10,
      "projectsDeleted": 5,
      "cpuComputeTimeSeconds": 10000,
      "gpuComputeTimeSeconds": 10000,
      "computeTimeSeconds": 10000,
      "storageBytesAdded": 1000000000,
      "storageBytesDeleted": 500000000
    }
  ]
}

Last updated

Was this helpful?