You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/jobs/history:
parameters:
- name: upload
required: true
in: query
description: Return jobs for the given upload id
schema:
type: integer
get:
operationId: getJobsHistoryPerUpload
tags:
- Job
summary: Get the history of all the jobs queued based on an upload
description: Returns the history of all the jobs queued based on an upload
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ShowJob'
'400':
description: "Bad Request. 'upload' is a required query param"
content:
application/json:
schema:
$ref: '#/components/schemas/Info'
'403':
description: Upload is not accessible
content:
application/json:
schema:
$ref: '#/components/schemas/Info'
'404':
description: Upload does not exist
content:
application/json:
schema:
$ref: '#/components/schemas/Info'
default:
$ref: '#/components/responses/defaultResponse'
Get jobs details for each uploads:
/cc @its-sushant
The text was updated successfully, but these errors were encountered: