Chilkat Online Tools

unicodeC / Salesforce Platform APIs / Bulk Create Job

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    int apexProcessingTime;
    int apiActiveProcessingTime;
    int apiVersion;
    const wchar_t *assignmentRuleId;
    const wchar_t *concurrencyMode;
    const wchar_t *contentType;
    const wchar_t *createdById;
    const wchar_t *createdDate;
    const wchar_t *externalIdFieldName;
    BOOL fastPathEnabled;
    const wchar_t *id;
    int numberBatchesCompleted;
    int numberBatchesFailed;
    int numberBatchesInProgress;
    int numberBatchesQueued;
    int numberBatchesTotal;
    int numberRecordsFailed;
    int numberRecordsProcessed;
    int numberRetries;
    const wchar_t *v_object;
    const wchar_t *operation;
    const wchar_t *state;
    const wchar_t *systemModstamp;
    int totalProcessingTime;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

    // 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"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"operation",L"insert");
    CkJsonObjectW_UpdateString(json,L"object",L"Account");
    CkJsonObjectW_UpdateString(json,L"contentType",L"CSV");

    CkHttpW_SetRequestHeader(http,L"Accept-Encoding",L"gzip");
    CkHttpW_SetRequestHeader(http,L"Sforce-Enable-PKChunking",L"FALSE");
    CkHttpW_SetRequestHeader(http,L"chunkSize",L"10000");
    CkHttpW_SetRequestHeader(http,L"charset",L"UTF-8");
    CkHttpW_SetRequestHeader(http,L"X-SFDC-Session",L"{{_accessToken}}");
    CkHttpW_SetRequestHeader(http,L"Sforce-Disable-Batch-Retry",L"FALSE");
    CkHttpW_SetRequestHeader(http,L"Sforce-Line-Ending",L"CRLF");
    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    CkHttpW_SetRequestHeader(http,L"Content-Encoding",L"gzip");
    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    resp = CkHttpW_PostJson3(http,L"https://domain.com/services/async/{{version}}/job",L"application/json",json);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    apexProcessingTime = CkJsonObjectW_IntOf(jResp,L"apexProcessingTime");
    apiActiveProcessingTime = CkJsonObjectW_IntOf(jResp,L"apiActiveProcessingTime");
    apiVersion = CkJsonObjectW_IntOf(jResp,L"apiVersion");
    assignmentRuleId = CkJsonObjectW_stringOf(jResp,L"assignmentRuleId");
    concurrencyMode = CkJsonObjectW_stringOf(jResp,L"concurrencyMode");
    contentType = CkJsonObjectW_stringOf(jResp,L"contentType");
    createdById = CkJsonObjectW_stringOf(jResp,L"createdById");
    createdDate = CkJsonObjectW_stringOf(jResp,L"createdDate");
    externalIdFieldName = CkJsonObjectW_stringOf(jResp,L"externalIdFieldName");
    fastPathEnabled = CkJsonObjectW_BoolOf(jResp,L"fastPathEnabled");
    id = CkJsonObjectW_stringOf(jResp,L"id");
    numberBatchesCompleted = CkJsonObjectW_IntOf(jResp,L"numberBatchesCompleted");
    numberBatchesFailed = CkJsonObjectW_IntOf(jResp,L"numberBatchesFailed");
    numberBatchesInProgress = CkJsonObjectW_IntOf(jResp,L"numberBatchesInProgress");
    numberBatchesQueued = CkJsonObjectW_IntOf(jResp,L"numberBatchesQueued");
    numberBatchesTotal = CkJsonObjectW_IntOf(jResp,L"numberBatchesTotal");
    numberRecordsFailed = CkJsonObjectW_IntOf(jResp,L"numberRecordsFailed");
    numberRecordsProcessed = CkJsonObjectW_IntOf(jResp,L"numberRecordsProcessed");
    numberRetries = CkJsonObjectW_IntOf(jResp,L"numberRetries");
    v_object = CkJsonObjectW_stringOf(jResp,L"object");
    operation = CkJsonObjectW_stringOf(jResp,L"operation");
    state = CkJsonObjectW_stringOf(jResp,L"state");
    systemModstamp = CkJsonObjectW_stringOf(jResp,L"systemModstamp");
    totalProcessingTime = CkJsonObjectW_IntOf(jResp,L"totalProcessingTime");


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

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}"
    }
  ]
}