Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkBinData.h>
#include <C_CkHttpResponse.h>
#include <C_CkStringBuilder.h>
#include <C_CkXml.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkBinData bdRequestBody;
HCkHttpResponse resp;
HCkStringBuilder sbResponseBody;
HCkXml xmlResponse;
const char *batchInfo_xmlns;
const char *id;
const char *jobId;
const char *state;
const char *createdDate;
const char *systemModstamp;
int numberRecordsProcessed;
int numberRecordsFailed;
int totalProcessingTime;
int apiActiveProcessingTime;
int apexProcessingTime;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
bdRequestBody = CkBinData_Create();
success = CkBinData_LoadFile(bdRequestBody,"file");
if (success != TRUE) {
printf("Failed to load file\n");
CkHttp_Dispose(http);
CkBinData_Dispose(bdRequestBody);
return;
}
CkHttp_SetRequestHeader(http,"X-SFDC-Session","{{_accessToken}}");
CkHttp_SetRequestHeader(http,"Accept-Encoding","gzip");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
CkHttp_SetRequestHeader(http,"charset","UTF-8");
CkHttp_SetRequestHeader(http,"Content-Encoding","gzip");
resp = CkHttp_PBinaryBd(http,"POST","https://domain.com/services/async/{{version}}/job/{{_jobId}}/batch",bdRequestBody,"zip/csv",FALSE,FALSE);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkBinData_Dispose(bdRequestBody);
return;
}
sbResponseBody = CkStringBuilder_Create();
CkHttpResponse_GetBodySb(resp,sbResponseBody);
CkHttpResponse_Dispose(resp);
xmlResponse = CkXml_Create();
CkXml_LoadSb(xmlResponse,sbResponseBody,TRUE);
printf("%s\n",CkXml_getXml(xmlResponse));
// Sample XML response:
// (Sample code for parsing the XML response is shown below)
// <?xml version="1.0" encoding="UTF-8"?>
// <batchInfo xmlns="http://www.force.com/2009/06/asyncapi/dataload">
// <id>751...</id>
// <jobId>750...</jobId>
// <state>Queued</state>
// <createdDate>datetime</createdDate>
// <systemModstamp>datetime</systemModstamp>
// <numberRecordsProcessed>0</numberRecordsProcessed>
// <numberRecordsFailed>0</numberRecordsFailed>
// <totalProcessingTime>0</totalProcessingTime>
// <apiActiveProcessingTime>0</apiActiveProcessingTime>
// <apexProcessingTime>0</apexProcessingTime>
// </batchInfo>
// Sample code for parsing the XML response...
// Use this online tool to generate parsing code from sample XML: Generate XML Parsing Code
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
batchInfo_xmlns = CkXml_getAttrValue(xmlResponse,"xmlns");
id = CkXml_getChildContent(xmlResponse,"id");
jobId = CkXml_getChildContent(xmlResponse,"jobId");
state = CkXml_getChildContent(xmlResponse,"state");
createdDate = CkXml_getChildContent(xmlResponse,"createdDate");
systemModstamp = CkXml_getChildContent(xmlResponse,"systemModstamp");
numberRecordsProcessed = CkXml_GetChildIntValue(xmlResponse,"numberRecordsProcessed");
numberRecordsFailed = CkXml_GetChildIntValue(xmlResponse,"numberRecordsFailed");
totalProcessingTime = CkXml_GetChildIntValue(xmlResponse,"totalProcessingTime");
apiActiveProcessingTime = CkXml_GetChildIntValue(xmlResponse,"apiActiveProcessingTime");
apexProcessingTime = CkXml_GetChildIntValue(xmlResponse,"apexProcessingTime");
CkHttp_Dispose(http);
CkBinData_Dispose(bdRequestBody);
CkStringBuilder_Dispose(sbResponseBody);
CkXml_Dispose(xmlResponse);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "X-SFDC-Session: {{_accessToken}}"
-H "Content-Type: text/csv"
-H "Content-Type: zip/csv"
-H "charset: UTF-8"
-H "Accept-Encoding: gzip"
-H "Content-Encoding: gzip"
--data-binary '@file'
https://domain.com/services/async/{{version}}/job/{{_jobId}}/batch
Postman Collection Item JSON
{
"name": "Bulk Create Batch",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const context = pm.environment.name ? pm.environment : pm.collectionVariables;",
"",
"var xmlTree = xml2Json(pm.response.text());",
"console.log(xmlTree);",
"context.set(\"_batchId\", xmlTree['batchInfo']['id']);"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-SFDC-Session",
"value": "{{_accessToken}}"
},
{
"key": "Content-Type",
"value": "text/csv"
},
{
"key": "Content-Type",
"value": "zip/csv",
"disabled": true
},
{
"key": "charset",
"value": "UTF-8"
},
{
"key": "Accept-Encoding",
"value": "gzip",
"disabled": true
},
{
"key": "Content-Encoding",
"value": "gzip",
"disabled": true
}
],
"body": {
"mode": "file",
"file": {
"src": ""
}
},
"url": {
"raw": "{{_endpoint}}/services/async/{{version}}/job/{{_jobId}}/batch",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"async",
"{{version}}",
"job",
"{{_jobId}}",
"batch"
]
}
},
"response": [
{
"name": "Successful Bulk Create Batch",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "X-SFDC-Session",
"value": "{{_accessToken}}"
},
{
"key": "Content-Type",
"value": "text/csv"
},
{
"key": "Content-Type",
"value": "zip/csv",
"disabled": true
},
{
"key": "charset",
"value": "UTF-8"
},
{
"key": "Accept-Encoding",
"value": "gzip",
"disabled": true
},
{
"key": "Content-Encoding",
"value": "gzip",
"disabled": true
}
],
"body": {
"mode": "file",
"file": {
"src": "/Users/username/Downloads/account.csv"
}
},
"url": {
"raw": "{{_endpoint}}/services/async/{{version}}/job/{{_jobId}}/batch",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"async",
"{{version}}",
"job",
"{{_jobId}}",
"batch"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Date",
"value": "Thu, 16 Nov 2023 16:16:10 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/batch/7512o00001DSJWnAAP"
},
{
"key": "Content-Type",
"value": "application/xml"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<batchInfo\n xmlns=\"http://www.force.com/2009/06/asyncapi/dataload\">\n <id>751...</id>\n <jobId>750...</jobId>\n <state>Queued</state>\n <createdDate>datetime</createdDate>\n <systemModstamp>datetime</systemModstamp>\n <numberRecordsProcessed>0</numberRecordsProcessed>\n <numberRecordsFailed>0</numberRecordsFailed>\n <totalProcessingTime>0</totalProcessingTime>\n <apiActiveProcessingTime>0</apiActiveProcessingTime>\n <apexProcessingTime>0</apexProcessingTime>\n</batchInfo>"
}
]
}