Chilkat Online Tools

SQL Server / Salesforce Platform APIs / Bulk Create Job

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    -- Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    -- The following JSON is sent in the request body.

    -- {
    --   "operation": "insert",
    --   "object": "Account",
    --   "contentType": "CSV"
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'operation', 'insert'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'object', 'Account'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'contentType', 'CSV'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept-Encoding', 'gzip'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Sforce-Enable-PKChunking', 'FALSE'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'chunkSize', '10000'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'charset', 'UTF-8'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-SFDC-Session', '{{_accessToken}}'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Sforce-Disable-Batch-Retry', 'FALSE'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Sforce-Line-Ending', 'CRLF'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Encoding', 'gzip'
    -- Adds the "Authorization: Bearer <access_token>" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/services/async/{{version}}/job', 'application/json', @json
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @resp

        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jResp
        RETURN
      END
    EXEC @hr = sp_OADestroy @resp

    -- Sample JSON response:
    -- (Sample code for parsing the JSON response is shown below)

    -- {
    --   "apexProcessingTime": 0,
    --   "apiActiveProcessingTime": 0,
    --   "apiVersion": 58,
    --   "assignmentRuleId": null,
    --   "concurrencyMode": "Parallel",
    --   "contentType": "CSV",
    --   "createdById": "005...",
    --   "createdDate": "<date_time>",
    --   "externalIdFieldName": null,
    --   "fastPathEnabled": false,
    --   "id": "750...",
    --   "numberBatchesCompleted": 0,
    --   "numberBatchesFailed": 0,
    --   "numberBatchesInProgress": 0,
    --   "numberBatchesQueued": 0,
    --   "numberBatchesTotal": 0,
    --   "numberRecordsFailed": 0,
    --   "numberRecordsProcessed": 0,
    --   "numberRetries": 0,
    --   "object": "<Object>",
    --   "operation": "insert",
    --   "state": "Open",
    --   "systemModstamp": "<date_time>",
    --   "totalProcessingTime": 0
    -- }

    -- Sample code for parsing the JSON response...
    -- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    DECLARE @apexProcessingTime int
    EXEC sp_OAMethod @jResp, 'IntOf', @apexProcessingTime OUT, 'apexProcessingTime'
    DECLARE @apiActiveProcessingTime int
    EXEC sp_OAMethod @jResp, 'IntOf', @apiActiveProcessingTime OUT, 'apiActiveProcessingTime'
    DECLARE @apiVersion int
    EXEC sp_OAMethod @jResp, 'IntOf', @apiVersion OUT, 'apiVersion'
    DECLARE @assignmentRuleId nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @assignmentRuleId OUT, 'assignmentRuleId'
    DECLARE @concurrencyMode nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @concurrencyMode OUT, 'concurrencyMode'
    DECLARE @contentType nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @contentType OUT, 'contentType'
    DECLARE @createdById nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @createdById OUT, 'createdById'
    DECLARE @createdDate nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @createdDate OUT, 'createdDate'
    DECLARE @externalIdFieldName nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @externalIdFieldName OUT, 'externalIdFieldName'
    DECLARE @fastPathEnabled int
    EXEC sp_OAMethod @jResp, 'BoolOf', @fastPathEnabled OUT, 'fastPathEnabled'
    DECLARE @id nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'id'
    DECLARE @numberBatchesCompleted int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberBatchesCompleted OUT, 'numberBatchesCompleted'
    DECLARE @numberBatchesFailed int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberBatchesFailed OUT, 'numberBatchesFailed'
    DECLARE @numberBatchesInProgress int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberBatchesInProgress OUT, 'numberBatchesInProgress'
    DECLARE @numberBatchesQueued int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberBatchesQueued OUT, 'numberBatchesQueued'
    DECLARE @numberBatchesTotal int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberBatchesTotal OUT, 'numberBatchesTotal'
    DECLARE @numberRecordsFailed int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberRecordsFailed OUT, 'numberRecordsFailed'
    DECLARE @numberRecordsProcessed int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberRecordsProcessed OUT, 'numberRecordsProcessed'
    DECLARE @numberRetries int
    EXEC sp_OAMethod @jResp, 'IntOf', @numberRetries OUT, 'numberRetries'
    DECLARE @v_object nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_object OUT, 'object'
    DECLARE @operation nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @operation OUT, 'operation'
    DECLARE @state nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @state OUT, 'state'
    DECLARE @systemModstamp nvarchar(4000)
    EXEC sp_OAMethod @jResp, 'StringOf', @systemModstamp OUT, 'systemModstamp'
    DECLARE @totalProcessingTime int
    EXEC sp_OAMethod @jResp, 'IntOf', @totalProcessingTime OUT, 'totalProcessingTime'

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "X-SFDC-Session: {{_accessToken}}"
	-H "Content-Type: application/json"
	-H "charset: UTF-8"
	-H "Sforce-Disable-Batch-Retry: FALSE"
	-H "Sforce-Line-Ending: CRLF"
	-H "Sforce-Enable-PKChunking: FALSE"
	-H "chunkSize: 10000"
	-H "Accept-Encoding: gzip"
	-H "Content-Encoding: gzip"
	-d '{
    "operation": "insert",
    "object": "Account",
    "contentType": "CSV"
}'
https://domain.com/services/async/{{version}}/job

Postman Collection Item JSON

{
  "name": "Bulk Create Job",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "const context = pm.environment.name ? pm.environment : pm.collectionVariables;",
          "",
          "const contentType = pm.response.headers.get(\"Content-Type\");",
          "if (contentType.indexOf(\"xml\") !== -1) {",
          "    const jsonData = xml2Json(pm.response.text());",
          "    context.set(\"_jobId\", jsonData['jobInfo']['id']);    ",
          "}",
          "else if (contentType.indexOf(\"json\") !== -1) {",
          "    const jsonData = pm.response.json();",
          "    context.set(\"_jobId\", jsonData.id);",
          "}",
          "",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "X-SFDC-Session",
        "value": "{{_accessToken}}"
      },
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      },
      {
        "key": "charset",
        "value": "UTF-8"
      },
      {
        "key": "Sforce-Disable-Batch-Retry",
        "value": "FALSE",
        "disabled": true
      },
      {
        "key": "Sforce-Line-Ending",
        "value": "CRLF",
        "disabled": true
      },
      {
        "key": "Sforce-Enable-PKChunking",
        "value": "FALSE",
        "disabled": true
      },
      {
        "key": "chunkSize",
        "value": "10000",
        "type": "text",
        "disabled": true
      },
      {
        "key": "Accept-Encoding",
        "value": "gzip",
        "disabled": true
      },
      {
        "key": "Content-Encoding",
        "value": "gzip",
        "disabled": true
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"operation\": \"insert\",\n    \"object\": \"Account\",\n    \"contentType\": \"CSV\"\n}"
    },
    "url": {
      "raw": "{{_endpoint}}/services/async/{{version}}/job",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "async",
        "{{version}}",
        "job"
      ]
    }
  },
  "response": [
    {
      "name": "Successful Bulk Create Job",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "X-SFDC-Session",
            "value": "{{_accessToken}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "charset",
            "value": "UTF-8"
          },
          {
            "key": "Sforce-Disable-Batch-Retry",
            "value": "FALSE",
            "disabled": true
          },
          {
            "key": "Sforce-Line-Ending",
            "value": "CRLF",
            "disabled": true
          },
          {
            "key": "Sforce-Enable-PKChunking",
            "value": "FALSE",
            "disabled": true
          },
          {
            "key": "chunkSize",
            "value": "10000",
            "disabled": true
          },
          {
            "key": "Accept-Encoding",
            "value": "gzip",
            "disabled": true
          },
          {
            "key": "Content-Encoding",
            "value": "gzip",
            "disabled": true
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"operation\" : \"insert\",\n  \"object\" : \"Account\",\n  \"contentType\" : \"CSV\"\n}"
        },
        "url": {
          "raw": "{{_endpoint}}/services/async/{{version}}/job",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "async",
            "{{version}}",
            "job"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Thu, 16 Nov 2023 16:07:11 GMT"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=63072000; includeSubDomains"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "X-Robots-Tag",
          "value": "none"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache,must-revalidate,max-age=0,no-store,private"
        },
        {
          "key": "Location",
          "value": "/services/async/58.0/job/7502o00000kjNCsAAM"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"apexProcessingTime\": 0,\n    \"apiActiveProcessingTime\": 0,\n    \"apiVersion\": 58,\n    \"assignmentRuleId\": null,\n    \"concurrencyMode\": \"Parallel\",\n    \"contentType\": \"CSV\",\n    \"createdById\": \"005...\",\n    \"createdDate\": \"<date_time>\",\n    \"externalIdFieldName\": null,\n    \"fastPathEnabled\": false,\n    \"id\": \"750...\",\n    \"numberBatchesCompleted\": 0,\n    \"numberBatchesFailed\": 0,\n    \"numberBatchesInProgress\": 0,\n    \"numberBatchesQueued\": 0,\n    \"numberBatchesTotal\": 0,\n    \"numberRecordsFailed\": 0,\n    \"numberRecordsProcessed\": 0,\n    \"numberRetries\": 0,\n    \"object\": \"<Object>\",\n    \"operation\": \"insert\",\n    \"state\": \"Open\",\n    \"systemModstamp\": \"<date_time>\",\n    \"totalProcessingTime\": 0\n}"
    }
  ]
}