openapi: 3.1.0 info: title: Salesforce Bulk API 2.0 Abort Dynamic 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: Dynamic paths: /services/oauth2/register: parameters: [] post: tags: - Dynamic summary: Salesforce Openid Connect Dynamic Client Registration Endpoint operationId: OpenIDConnectDynamicClientRegistrationEndpoint parameters: - name: Accept in: header description: '' required: true schema: type: string examples: - application/json example: example_value - name: Authorization in: header description: '' required: true schema: type: string examples: - Bearer {{init_access_token}} example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/OpenIDConnectDynamicClientRegistrationEndpointRequest' - examples: - redirect_uris: - http://localhost response_types: - code - token - id_token grant_types: - authorization_code - implicit - refresh_token application_type: web contacts: - abc@sf.com - ve7jtb@example.org client_name: Example Olivier contentMediaType: application/json example: redirect_uris: - http://localhost response_types: - code - token - id_token grant_types: - authorization_code - implicit - refresh_token application_type: web contacts: - abc@sf.com - ve7jtb@example.org client_name: Example Olivier required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:04:08 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 Expires: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 01 Jan 1970 00:00:00 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding 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/json;charset=UTF-8: schema: type: string examples: - "{\n \"client_id\": \"\",\n \"client_secret\": \"\",\n \"registration_access_token\": \"\",\n \"registration_client_uri\": \"https://login.salesforce.com/services/oauth2/register/\",\n \"client_id_issued_at\": ,\n \"client_secret_expires_at\": 0,\n \"token_endpoint_auth_method\": \"client_secret_post\",\n \"redirect_uris\": [\n \"http://localhost\"\n ],\n \"response_types\": [\n \"code\",\n \"token\",\n \"id_token\"\n ],\n \"grant_types\": [\n \"authorization_code\",\n \"hybrid_auth_code\",\n \"implicit\",\n \"refresh_token\"\n ],\n \"contacts\": [\n \"abc@sf.com\"\n ],\n \"client_name\": \"Sample Customer\",\n \"scopes\": [\n \"openid\",\n \"refresh_token\",\n \"id\",\n \"api\"\n ]\n}" contentMediaType: application/json;charset=UTF-8 example: "{\n \"client_id\": \"\",\n \"client_secret\": \"\",\n \"registration_access_token\": \"\",\n \"registration_client_uri\": \"https://login.salesforce.com/services/oauth2/register/\",\n \"client_id_issued_at\": ,\n \"client_secret_expires_at\": 0,\n \"token_endpoint_auth_method\": \"client_secret_post\",\n \"redirect_uris\": [\n \"http://localhost\"\n ],\n \"response_types\": [\n \"code\",\n \"token\",\n \"id_token\"\n ],\n \"grant_types\": [\n \"authorization_code\",\n \"hybrid_auth_code\",\n \"implicit\",\n \"refresh_token\"\n ],\n \"contacts\": [\n \"abc@sf.com\"\n ],\n \"client_name\": \"Sample Customer\",\n \"scopes\": [\n \"openid\",\n \"refresh_token\",\n \"id\",\n \"api\"\n ]\n}" deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: OpenIDConnectDynamicClientRegistrationEndpointRequest: title: OpenIDConnectDynamicClientRegistrationEndpointRequest required: - redirect_uris - response_types - grant_types - application_type - contacts - client_name type: object properties: redirect_uris: type: array items: type: string description: '' example: [] response_types: type: array items: type: string description: '' example: [] grant_types: type: array items: type: string description: '' example: [] application_type: type: string example: example_value contacts: type: array items: type: string description: '' example: [] client_name: type: string example: example_value examples: - redirect_uris: - http://localhost response_types: - code - token - id_token grant_types: - authorization_code - implicit - refresh_token application_type: web contacts: - abc@sf.com - ve7jtb@example.org client_name: Example Olivier 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}". '