White Label Admin - Get organization jobs
White label admin only API to get the list of all jobs for a organization.
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
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId}/jobs HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"jobs": [
{
"id": 1,
"category": "text",
"categoryKey": "text",
"key": "text",
"created": "2025-07-12T04:14:02.968Z",
"started": "2025-07-12T04:14:02.968Z",
"finished": "2025-07-12T04:14:02.968Z",
"finishedSuccessful": true,
"jobNotificationUids": [
1
],
"additionalInfo": "text",
"computeTime": 1,
"createdByUser": {
"id": 1,
"name": "text",
"username": "text",
"photo": "text"
},
"categoryCount": 1,
"metadata": {}
}
],
"totalJobCount": 1
}
Last updated
Was this helpful?