get: operationId: GetBatchJobs summary: List Batch Jobs description: Retrieve a list of Batch Jobs. x-authenticated: true parameters: - in: query name: limit description: The number of batch jobs to return. schema: type: integer default: 10 - in: query name: offset description: The number of batch jobs to skip before results. schema: type: integer default: 0 - in: query name: id style: form explode: false description: Filter by the batch ID schema: oneOf: - type: string description: batch job ID - type: array description: multiple batch job IDs items: type: string - in: query name: type style: form explode: false description: Filter by the batch type schema: type: array items: type: string - in: query name: confirmed_at style: form explode: false description: >- Date comparison for when resulting collections was confirmed, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date - in: query name: pre_processed_at style: form explode: false description: >- Date comparison for when resulting collections was pre processed, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date - in: query name: completed_at style: form explode: false description: >- Date comparison for when resulting collections was completed, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date - in: query name: failed_at style: form explode: false description: >- Date comparison for when resulting collections was failed, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date - in: query name: canceled_at style: form explode: false description: >- Date comparison for when resulting collections was canceled, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date - in: query name: order description: Field used to order retrieved batch jobs schema: type: string - in: query name: expand description: >- (Comma separated) Which fields should be expanded in each order of the result. schema: type: string - in: query name: fields description: >- (Comma separated) Which fields should be included in each order of the result. schema: type: string - in: query name: created_at style: form explode: false description: >- Date comparison for when resulting collections was created, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date - in: query name: updated_at style: form explode: false description: >- Date comparison for when resulting collections was updated, i.e. less than, greater than etc. schema: type: object properties: lt: type: string description: filter by dates less than this date format: date gt: type: string description: filter by dates greater than this date format: date lte: type: string description: filter by dates less than or equal to this date format: date gte: type: string description: filter by dates greater than or equal to this date format: date x-codegen: method: list queryParams: AdminGetBatchParams x-codeSamples: - lang: JavaScript label: JS Client source: $ref: ../code_samples/JavaScript/admin_batch-jobs/get.js - lang: Shell label: cURL source: $ref: ../code_samples/Shell/admin_batch-jobs/get.sh security: - api_token: [] - cookie_auth: [] tags: - Batch Jobs responses: '200': description: OK content: application/json: schema: $ref: ../components/schemas/AdminBatchJobListRes.yaml '400': $ref: ../components/responses/400_error.yaml '401': $ref: ../components/responses/unauthorized.yaml '404': $ref: ../components/responses/not_found_error.yaml '409': $ref: ../components/responses/invalid_state_error.yaml '422': $ref: ../components/responses/invalid_request_error.yaml '500': $ref: ../components/responses/500_error.yaml post: operationId: PostBatchJobs summary: Create a Batch Job description: Creates a Batch Job. x-authenticated: true requestBody: content: application/json: schema: $ref: ../components/schemas/AdminPostBatchesReq.yaml x-codegen: method: create x-codeSamples: - lang: JavaScript label: JS Client source: $ref: ../code_samples/JavaScript/admin_batch-jobs/post.js - lang: Shell label: cURL source: $ref: ../code_samples/Shell/admin_batch-jobs/post.sh security: - api_token: [] - cookie_auth: [] tags: - Batch Jobs responses: '201': description: OK content: application/json: schema: $ref: ../components/schemas/AdminBatchJobRes.yaml '400': $ref: ../components/responses/400_error.yaml '401': $ref: ../components/responses/unauthorized.yaml '404': $ref: ../components/responses/not_found_error.yaml '409': $ref: ../components/responses/invalid_state_error.yaml '422': $ref: ../components/responses/invalid_request_error.yaml '500': $ref: ../components/responses/500_error.yaml