Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
integer li_ApexProcessingTime
integer li_ApiActiveProcessingTime
integer li_ApiVersion
string ls_AssignmentRuleId
string ls_ConcurrencyMode
string ls_ContentType
string ls_CreatedById
string ls_CreatedDate
string ls_ExternalIdFieldName
integer li_FastPathEnabled
string ls_Id
integer li_NumberBatchesCompleted
integer li_NumberBatchesFailed
integer li_NumberBatchesInProgress
integer li_NumberBatchesQueued
integer li_NumberBatchesTotal
integer li_NumberRecordsFailed
integer li_NumberRecordsProcessed
integer li_NumberRetries
string ls_V_object
string ls_Operation
string ls_State
string ls_SystemModstamp
integer li_TotalProcessingTime
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// 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"
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("operation","insert")
loo_Json.UpdateString("object","Account")
loo_Json.UpdateString("contentType","CSV")
loo_Http.SetRequestHeader("Accept-Encoding","gzip")
loo_Http.SetRequestHeader("Sforce-Enable-PKChunking","FALSE")
loo_Http.SetRequestHeader("chunkSize","10000")
loo_Http.SetRequestHeader("charset","UTF-8")
loo_Http.SetRequestHeader("X-SFDC-Session","{{_accessToken}}")
loo_Http.SetRequestHeader("Sforce-Disable-Batch-Retry","FALSE")
loo_Http.SetRequestHeader("Sforce-Line-Ending","CRLF")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Http.SetRequestHeader("Content-Encoding","gzip")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Resp = loo_Http.PostJson3("https://domain.com/services/async/{{version}}/job","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_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
li_ApexProcessingTime = loo_JResp.IntOf("apexProcessingTime")
li_ApiActiveProcessingTime = loo_JResp.IntOf("apiActiveProcessingTime")
li_ApiVersion = loo_JResp.IntOf("apiVersion")
ls_AssignmentRuleId = loo_JResp.StringOf("assignmentRuleId")
ls_ConcurrencyMode = loo_JResp.StringOf("concurrencyMode")
ls_ContentType = loo_JResp.StringOf("contentType")
ls_CreatedById = loo_JResp.StringOf("createdById")
ls_CreatedDate = loo_JResp.StringOf("createdDate")
ls_ExternalIdFieldName = loo_JResp.StringOf("externalIdFieldName")
li_FastPathEnabled = loo_JResp.BoolOf("fastPathEnabled")
ls_Id = loo_JResp.StringOf("id")
li_NumberBatchesCompleted = loo_JResp.IntOf("numberBatchesCompleted")
li_NumberBatchesFailed = loo_JResp.IntOf("numberBatchesFailed")
li_NumberBatchesInProgress = loo_JResp.IntOf("numberBatchesInProgress")
li_NumberBatchesQueued = loo_JResp.IntOf("numberBatchesQueued")
li_NumberBatchesTotal = loo_JResp.IntOf("numberBatchesTotal")
li_NumberRecordsFailed = loo_JResp.IntOf("numberRecordsFailed")
li_NumberRecordsProcessed = loo_JResp.IntOf("numberRecordsProcessed")
li_NumberRetries = loo_JResp.IntOf("numberRetries")
ls_V_object = loo_JResp.StringOf("object")
ls_Operation = loo_JResp.StringOf("operation")
ls_State = loo_JResp.StringOf("state")
ls_SystemModstamp = loo_JResp.StringOf("systemModstamp")
li_TotalProcessingTime = loo_JResp.IntOf("totalProcessingTime")
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_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}"
}
]
}