Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder")
set sbRequestBody = CreateObject("Chilkat.StringBuilder")
success = sbRequestBody.Append("Salesforce Field,Csv Header,Value,Hint" & vbLf)
success = sbRequestBody.Append("Name,Full Name,,")
http.SetRequestHeader "Content-Type","text/csv"
http.SetRequestHeader "X-SFDC-Session","{{_accessToken}}"
http.SetRequestHeader "Accept-Encoding","gzip"
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
http.SetRequestHeader "charset","UTF-8"
http.SetRequestHeader "Content-Encoding","gzip"
' resp is a Chilkat.HttpResponse
Set resp = http.PTextSb("POST","https://domain.com/services/async/{{version}}/job/{{_jobId}}/spec",sbRequestBody,"utf-8","text/csv",0,0)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "X-SFDC-Session: {{_accessToken}}"
-H "Content-Type: text/csv"
-H "charset: UTF-8"
-H "Accept-Encoding: gzip"
-H "Content-Encoding: gzip"
-d 'Salesforce Field,Csv Header,Value,Hint
Name,Full Name,,'
https://domain.com/services/async/{{version}}/job/{{_jobId}}/spec
Postman Collection Item JSON
{
"name": "Bulk Spec",
"request": {
"method": "POST",
"header": [
{
"key": "X-SFDC-Session",
"value": "{{_accessToken}}"
},
{
"key": "Content-Type",
"value": "text/csv"
},
{
"key": "charset",
"value": "UTF-8"
},
{
"key": "Accept-Encoding",
"value": "gzip"
},
{
"key": "Content-Encoding",
"value": "gzip"
}
],
"body": {
"mode": "raw",
"raw": "Salesforce Field,Csv Header,Value,Hint\nName,Full Name,,"
},
"url": {
"raw": "{{_endpoint}}/services/async/{{version}}/job/{{_jobId}}/spec",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"async",
"{{version}}",
"job",
"{{_jobId}}",
"spec"
]
}
},
"response": [
{
"name": "Successful Bulk Spec",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "X-SFDC-Session",
"value": "{{_accessToken}}"
},
{
"key": "Content-Type",
"value": "text/csv"
},
{
"key": "charset",
"value": "UTF-8"
},
{
"key": "Accept-Encoding",
"value": "gzip"
},
{
"key": "Content-Encoding",
"value": "gzip"
}
],
"body": {
"mode": "raw",
"raw": "Salesforce Field,Csv Header,Value,Hint\nName,Full Name,,"
},
"url": {
"raw": "{{_endpoint}}/services/async/{{version}}/job/{{_jobId}}/spec",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"async",
"{{version}}",
"job",
"{{_jobId}}",
"spec"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "plain",
"header": [
{
"key": "Date",
"value": "Thu, 16 Nov 2023 16:12:34 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": "Content-Security-Policy",
"value": "upgrade-insecure-requests"
},
{
"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/spec/0Aj2o000000PbakCAC"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": null
}
]
}