White Label Admin - Get user jobs

White Label Admin - Get user jobs

get

White label admin only API to get the list of all project jobs for a user.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

userIdintegerRequired

User ID

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/users/{userId}/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:12:03.493Z",
      "started": "2025-07-12T04:12:03.493Z",
      "finished": "2025-07-12T04:12:03.493Z",
      "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?