Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody
oleobject loo_XmlResponse
string ls_BatchInfoList_xmlns
string ls_Id
string ls_JobId
string ls_State
string ls_CreatedDate
string ls_SystemModstamp
integer li_NumberRecordsProcessed
integer li_NumberRecordsFailed
integer li_TotalProcessingTime
integer li_ApiActiveProcessingTime
integer li_ApexProcessingTime
// 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
loo_Http.SetRequestHeader("X-SFDC-Session","{{_accessToken}}")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("Accept-Encoding","gzip")
loo_Http.SetRequestHeader("Content-Encoding","gzip")
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
li_Success = loo_Http.QuickGetSb("https://domain.com/services/async/{{version}}/job/{{_jobId}}/batch",loo_SbResponseBody)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_SbResponseBody
return
end if
loo_XmlResponse = create oleobject
// Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0
li_rc = loo_XmlResponse.ConnectToNewObject("Chilkat.Xml")
loo_XmlResponse.LoadSb(loo_SbResponseBody,1)
Write-Debug loo_XmlResponse.GetXml()
// Sample XML response:
// (Sample code for parsing the XML response is shown below)
// <?xml version="1.0" encoding="UTF-8"?>
// <batchInfoList xmlns="http://www.force.com/2009/06/asyncapi/dataload">
// <batchInfo>
// <id>751...</id>
// <jobId>750...</jobId>
// <state>Completed</state>
// <createdDate>datetime</createdDate>
// <systemModstamp>datetime</systemModstamp>
// <numberRecordsProcessed>1</numberRecordsProcessed>
// <numberRecordsFailed>0</numberRecordsFailed>
// <totalProcessingTime>403</totalProcessingTime>
// <apiActiveProcessingTime>225</apiActiveProcessingTime>
// <apexProcessingTime>64</apexProcessingTime>
// </batchInfo>
// </batchInfoList>
// Sample code for parsing the XML response...
// Use this online tool to generate parsing code from sample XML: Generate XML Parsing Code
ls_BatchInfoList_xmlns = loo_XmlResponse.GetAttrValue("xmlns")
ls_Id = loo_XmlResponse.GetChildContent("batchInfo|id")
ls_JobId = loo_XmlResponse.GetChildContent("batchInfo|jobId")
ls_State = loo_XmlResponse.GetChildContent("batchInfo|state")
ls_CreatedDate = loo_XmlResponse.GetChildContent("batchInfo|createdDate")
ls_SystemModstamp = loo_XmlResponse.GetChildContent("batchInfo|systemModstamp")
li_NumberRecordsProcessed = loo_XmlResponse.GetChildIntValue("batchInfo|numberRecordsProcessed")
li_NumberRecordsFailed = loo_XmlResponse.GetChildIntValue("batchInfo|numberRecordsFailed")
li_TotalProcessingTime = loo_XmlResponse.GetChildIntValue("batchInfo|totalProcessingTime")
li_ApiActiveProcessingTime = loo_XmlResponse.GetChildIntValue("batchInfo|apiActiveProcessingTime")
li_ApexProcessingTime = loo_XmlResponse.GetChildIntValue("batchInfo|apexProcessingTime")
destroy loo_Http
destroy loo_SbResponseBody
destroy loo_XmlResponse
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
-H "X-SFDC-Session: {{_accessToken}}"
-H "Accept-Encoding: gzip"
-H "Content-Encoding: gzip"
https://domain.com/services/async/{{version}}/job/{{_jobId}}/batch
Postman Collection Item JSON
{
"name": "Bulk Check Batch Status",
"request": {
"method": "GET",
"header": [
{
"key": "X-SFDC-Session",
"value": "{{_accessToken}}"
},
{
"key": "Accept-Encoding",
"value": "gzip"
},
{
"key": "Content-Encoding",
"value": "gzip"
}
],
"url": {
"raw": "{{_endpoint}}/services/async/{{version}}/job/{{_jobId}}/batch",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"async",
"{{version}}",
"job",
"{{_jobId}}",
"batch"
]
}
},
"response": [
{
"name": "Successful Bulk Check Batch Status",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "X-SFDC-Session",
"value": "{{_accessToken}}"
},
{
"key": "Accept-Encoding",
"value": "gzip"
},
{
"key": "Content-Encoding",
"value": "gzip"
}
],
"url": {
"raw": "{{_endpoint}}/services/async/{{version}}/job/{{_jobId}}/batch",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"async",
"{{version}}",
"job",
"{{_jobId}}",
"batch"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Date",
"value": "Thu, 16 Nov 2023 16:19:29 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": "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<batchInfoList\n xmlns=\"http://www.force.com/2009/06/asyncapi/dataload\">\n <batchInfo>\n <id>751...</id>\n <jobId>750...</jobId>\n <state>Completed</state>\n <createdDate>datetime</createdDate>\n <systemModstamp>datetime</systemModstamp>\n <numberRecordsProcessed>1</numberRecordsProcessed>\n <numberRecordsFailed>0</numberRecordsFailed>\n <totalProcessingTime>403</totalProcessingTime>\n <apiActiveProcessingTime>225</apiActiveProcessingTime>\n <apexProcessingTime>64</apexProcessingTime>\n </batchInfo>\n</batchInfoList>"
}
]
}