GET
/
api
/
organizations
/
{organizationId}
/
whitelabel
/
organizations
/
{innerOrganizationId}
/
usage
/
reports
/
{reportId}
White Label Admin - Get usage report
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId}/usage/reports/{reportId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "report": {
    "id": 123,
    "created": "2023-11-07T05:31:56Z",
    "createdByUser": {
      "id": 123,
      "name": "<string>",
      "username": "<string>",
      "photo": "<string>"
    },
    "jobId": 123,
    "jobFinished": true,
    "jobFinishedSuccessful": true,
    "downloadLink": "<string>",
    "reportStartDate": "2023-11-07T05:31:56Z",
    "reportEndDate": "2023-11-07T05:31:56Z"
  }
}

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

reportId
integer
required

Report ID

Response

200 - application/json

OK

The response is of type object.