mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
283 lines
8 KiB
YAML
283 lines
8 KiB
YAML
/api/v4/jobs:
|
|
get:
|
|
tags:
|
|
- jobs
|
|
summary: Get the jobs.
|
|
description: >
|
|
Get a page of jobs. Use the query parameters to modify the behaviour of
|
|
this endpoint.
|
|
|
|
__Minimum server version: 4.1__
|
|
|
|
##### Permissions
|
|
|
|
Must have `manage_jobs` permission.
|
|
operationId: GetJobs
|
|
parameters:
|
|
- name: page
|
|
in: query
|
|
description: The page to select.
|
|
schema:
|
|
type: integer
|
|
default: 0
|
|
- name: per_page
|
|
in: query
|
|
description: The number of jobs per page.
|
|
schema:
|
|
type: integer
|
|
default: 5
|
|
- name: job_type
|
|
in: query
|
|
description: The type of jobs to fetch.
|
|
schema:
|
|
type: string
|
|
- name: status
|
|
in: query
|
|
description: The status of jobs to fetch.
|
|
schema:
|
|
type: string
|
|
responses:
|
|
"200":
|
|
description: Job list retrieval successful
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: "#/components/schemas/Job"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
post:
|
|
tags:
|
|
- jobs
|
|
summary: Create a new job.
|
|
description: |
|
|
Create a new job.
|
|
__Minimum server version: 4.1__
|
|
##### Permissions
|
|
Must have `manage_jobs` permission.
|
|
operationId: CreateJob
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
required:
|
|
- type
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: The type of job to create
|
|
data:
|
|
type: object
|
|
description: An object containing any additional data required for this
|
|
job type
|
|
description: Job object to be created
|
|
required: true
|
|
responses:
|
|
"201":
|
|
description: Job creation successful
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "#/components/schemas/Job"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
"/api/v4/jobs/{job_id}":
|
|
get:
|
|
tags:
|
|
- jobs
|
|
summary: Get a job.
|
|
description: |
|
|
Gets a single job.
|
|
__Minimum server version: 4.1__
|
|
##### Permissions
|
|
Must have `manage_jobs` permission.
|
|
operationId: GetJob
|
|
parameters:
|
|
- name: job_id
|
|
in: path
|
|
description: Job GUID
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
"200":
|
|
description: Job retrieval successful
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "#/components/schemas/Job"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
"404":
|
|
$ref: "#/components/responses/NotFound"
|
|
"/api/v4/jobs/{job_id}/download":
|
|
get:
|
|
tags:
|
|
- jobs
|
|
summary: Download the results of a job.
|
|
description: |
|
|
Download the result of a single job.
|
|
__Minimum server version: 5.28__
|
|
##### Permissions
|
|
Must have `manage_jobs` permission.
|
|
operationId: DownloadJob
|
|
parameters:
|
|
- name: job_id
|
|
in: path
|
|
description: Job GUID
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
"404":
|
|
$ref: "#/components/responses/NotFound"
|
|
"/api/v4/jobs/{job_id}/cancel":
|
|
post:
|
|
tags:
|
|
- jobs
|
|
summary: Cancel a job.
|
|
description: |
|
|
Cancel a job.
|
|
__Minimum server version: 4.1__
|
|
##### Permissions
|
|
Must have `manage_jobs` permission.
|
|
operationId: CancelJob
|
|
parameters:
|
|
- name: job_id
|
|
in: path
|
|
description: Job GUID
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
"200":
|
|
description: Job canceled successfully
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "#/components/schemas/StatusOK"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
"404":
|
|
$ref: "#/components/responses/NotFound"
|
|
"/api/v4/jobs/type/{type}":
|
|
get:
|
|
tags:
|
|
- jobs
|
|
summary: Get the jobs of the given type.
|
|
description: >
|
|
Get a page of jobs of the given type. Use the query parameters to modify
|
|
the behaviour of this endpoint.
|
|
|
|
__Minimum server version: 4.1__
|
|
|
|
##### Permissions
|
|
|
|
Must have `manage_jobs` permission.
|
|
operationId: GetJobsByType
|
|
parameters:
|
|
- name: type
|
|
in: path
|
|
description: Job type
|
|
required: true
|
|
schema:
|
|
type: string
|
|
- name: page
|
|
in: query
|
|
description: The page to select.
|
|
schema:
|
|
type: integer
|
|
default: 0
|
|
- name: per_page
|
|
in: query
|
|
description: The number of jobs per page.
|
|
schema:
|
|
type: integer
|
|
default: 60
|
|
responses:
|
|
"200":
|
|
description: Job list retrieval successful
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: "#/components/schemas/Job"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
"/api/v4/jobs/{job_id}/status":
|
|
patch:
|
|
tags:
|
|
- jobs
|
|
summary: Update the status of a job
|
|
description: >
|
|
Update the status of a job. Valid status updates:
|
|
- 'in_progress' -> 'pending'
|
|
- 'in_progress' | 'pending' -> 'cancel_requested'
|
|
- 'cancel_requested' -> 'canceled'
|
|
|
|
Add force to the body of the PATCH request to bypass the given rules, the only statuses you can go to are: pending, cancel_requested and canceled. This can have unexpected consequences and should be used with caution.
|
|
operationId: UpdateJobStatus
|
|
parameters:
|
|
- name: job_id
|
|
in: path
|
|
description: Job GUID
|
|
required: true
|
|
schema:
|
|
type: string
|
|
requestBody:
|
|
required: true
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
required:
|
|
- status
|
|
properties:
|
|
status:
|
|
type: string
|
|
description: The status you want to set
|
|
force:
|
|
type: boolean
|
|
description: Set this to true to bypass status restrictions
|
|
responses:
|
|
"200":
|
|
description: Status successfully set.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "#/components/schemas/StatusOK"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|