Jobs

List jobs

Lists all in-progress and completed jobs for the authenticated user. Results are paginated.

GET
/jobs
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Query Parameters

ListJobsQueryListJobsQuery

Response Body

Examples

curl -X GET "https://loading/jobs?page=1&per_page=20"
{
  "jobs": [
    {
      "created_at": "string",
      "error_message": "string",
      "identity_code": "string",
      "identity_name": "string",
      "job_id": "string",
      "job_type": "string",
      "post_processing_status": "string",
      "processed_images": 0,
      "processing_options": null,
      "progress": 0,
      "project_id": 0,
      "project_key": "string",
      "project_text": "string",
      "should_post_process": true,
      "status": "string",
      "total_images": 0,
      "updated_at": "string"
    }
  ],
  "pagination": {
    "has_next": true,
    "has_prev": true,
    "page": 0,
    "pages": 0,
    "per_page": 0,
    "total": 0
  }
}
Empty