White Label Admin - Get all usage reports

White Label Admin - Get all usage reports

get

Get all usage reports for an organization. This is an API only available to white label admins.

Authorizations
Path parameters
organizationIdintegerrequired

Organization ID

innerOrganizationIdintegerrequired

Organization ID within the context of a white label

Query parameters
limitintegeroptional

Maximum number of results

offsetintegeroptional

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId}/usage/reports' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "reports": [
    {
      "id": 1,
      "created": "2025-03-26T12:59:07.926Z",
      "createdByUser": {
        "id": 1,
        "name": "text",
        "username": "text",
        "photo": "text"
      },
      "jobId": 1,
      "jobFinished": true,
      "jobFinishedSuccessful": true,
      "downloadLink": "text",
      "reportStartDate": "2025-03-26T12:59:07.926Z",
      "reportEndDate": "2025-03-26T12:59:07.926Z"
    }
  ],
  "totalCount": 1
}

Last updated

Was this helpful?