GET
/
api
/
organizations
/
{organizationId}
/
whitelabel
/
organizations
/
{innerOrganizationId}
/
usage
/
computeTime
White Label Admin - Get organization compute time usage
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId}/usage/computeTime \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "cpuComputeTime": 123,
  "gpuComputeTime": 123,
  "totalComputeTime": 123
}

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

startDate
string<date-time>
required

Start date

endDate
string<date-time>
required

End date

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

error
string

Optional error description (set if 'success' was false)

cpuComputeTime
number

CPU compute time in seconds of all jobs in the organization (including organizational project jobs).

gpuComputeTime
number

GPU compute time in seconds of all jobs in the organization (including organizational project jobs).

totalComputeTime
number

Total compute time is the amount of computation time spent in jobs, in minutes used by an organization over the given period, calculated as CPU + GPU minutes.