# Jobs Background job management ## Endpoints ### GET /api/v1/jobs **Authentication:** Required (Bearer JWT) #### Responses | Status | Description | | ------ | ------------ | | 200 | List of jobs | | 401 | Unauthorized | | 403 | Forbidden | --- ### GET /api/v1/jobs/{id} **Authentication:** Required (Bearer JWT) #### Parameters | Name | In | Required | Description | | ---- | ---- | -------- | ----------- | | `id` | path | Yes | Job ID | #### Responses | Status | Description | | ------ | ------------ | | 200 | Job details | | 401 | Unauthorized | | 403 | Forbidden | | 404 | Not found | --- ### POST /api/v1/jobs/{id}/cancel **Authentication:** Required (Bearer JWT) #### Parameters | Name | In | Required | Description | | ---- | ---- | -------- | ----------- | | `id` | path | Yes | Job ID | #### Responses | Status | Description | | ------ | ------------- | | 200 | Job cancelled | | 401 | Unauthorized | | 403 | Forbidden | | 404 | Not found | ---