openapi: 3.1.0 info: title: Salesforce Bulk API 2.0 Abort Checks API description: 'Salesforce Bulk API 2.0 is a simplified, REST-based interface for bulk data operations that improves on the original Bulk API. It uses a straightforward job model and supports CSV format for ingest and query jobs, enabling processing of millions of records asynchronously. ' version: v63.0 contact: name: Salesforce Developers url: https://developer.salesforce.com/ license: name: Salesforce Developer Terms url: https://www.salesforce.com/company/legal/agreements/ servers: - url: https://{instance}.salesforce.com/services/data/v{version}/jobs description: Salesforce Bulk API 2.0 jobs endpoint variables: instance: default: yourInstance description: 'The Salesforce instance identifier (e.g., na1, eu3, or a My Domain subdomain like mycompany). ' version: default: '63.0' description: 'The Salesforce API version number (e.g., 63.0). Use the latest supported version for new integrations. ' security: - BearerAuth: [] tags: - name: Checks paths: /async/64.0/job//batch: parameters: [] get: tags: - Checks summary: Salesforce Bulk Check Batch Status operationId: BulkCheckBatchStatus parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: Accept-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: Content-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:19:29 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/xml: schema: allOf: - $ref: '#/components/schemas/batchInfoList' - xml: name: batchInfoList attribute: false wrapped: false examples: - "\n\n \n\n 751...\n\n 750...\n\n Completed\n\n datetime\n\n datetime\n\n 1\n\n 0\n\n 403\n\n 225\n\n 64\n\n \n\n" contentMediaType: application/xml example: "\n\n \n\n 751...\n\n 750...\n\n Completed\n\n datetime\n\n datetime\n\n 1\n\n 0\n\n 403\n\n 225\n\n 64\n\n \n\n" deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: batchInfo: title: batchInfo required: - id - jobId - state - createdDate - systemModstamp - numberRecordsProcessed - numberRecordsFailed - totalProcessingTime - apiActiveProcessingTime - apexProcessingTime type: object properties: id: type: string xml: name: id namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: abc123 jobId: type: string xml: name: jobId namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: '500123' state: type: string xml: name: state namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value createdDate: type: string xml: name: createdDate namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value systemModstamp: type: string xml: name: systemModstamp namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value numberRecordsProcessed: type: integer contentEncoding: int32 xml: name: numberRecordsProcessed namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 10 numberRecordsFailed: type: integer contentEncoding: int32 xml: name: numberRecordsFailed namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 10 totalProcessingTime: type: integer contentEncoding: int32 xml: name: totalProcessingTime namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 1700000000000 apiActiveProcessingTime: type: integer contentEncoding: int32 xml: name: apiActiveProcessingTime namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 1700000000000 apexProcessingTime: type: integer contentEncoding: int32 xml: name: apexProcessingTime namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 1700000000000 xml: name: batchInfo namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false batchInfoList: title: batchInfoList required: - batchInfo type: object properties: batchInfo: allOf: - $ref: '#/components/schemas/batchInfo' - xml: name: batchInfo namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value xml: name: batchInfoList namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false securitySchemes: BearerAuth: type: http scheme: bearer description: 'OAuth 2.0 Bearer token obtained from the Salesforce OAuth 2.0 token endpoint. Include this token in the Authorization header as "Bearer {access_token}". '