List jobs
Jobs
List jobs
Returns a paginated list of jobs for the project, applying the filtering and sorting from the request body and including each job creating user.
POST
List jobs
Headers
Project ID to specify the project context
Query Parameters
Required range:
1 <= x <= 100Required range:
x >= 1Body
application/json
Filter the jobs by their processing status.
Available options:
pending, processing, completed, failed, partial_failed Example:
"completed"
Filter the jobs by the identifier of the user who created them.
Example:
"550e8400-e29b-41d4-a716-446655440000"
Sorting criteria for the returned jobs. Each entry pairs a sortable field (createdAt, updatedAt or status) with a direction (ASC or DESC). Defaults to sorting by creation date descending.
Example:
[
{ "field": "createdAt", "direction": "DESC" }
]