GET
/
api
/
organizations
/
{organizationId}
/
whitelabel
/
organizations
/
{innerOrganizationId}
White Label Admin - Get organization information
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "cpuComputeTime": 123,
  "gpuComputeTime": 123,
  "totalComputeTime": 123,
  "billable": true,
  "entitlementLimits": {
    "totalStorage": 123,
    "computeTimePerYear": 123,
    "gpuComputeTimePerYear": 123,
    "numberOfProjects": 123,
    "numberOfUsers": 123
  },
  "computeTimeCurrentContractSince": "2023-11-07T05:31:56Z",
  "totalStorage": 123,
  "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
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

innerOrganizationId
integer
required

Organization ID within the context of a white label

Query Parameters

includeDeleted
boolean

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

Response

200 - application/json

OK

The response is of type object.