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
string ls_ReferenceId
string ls_Id
integer li_HasErrors
integer i
integer li_Count_i
// 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.
// {
// "records": [
// {
// "attributes": {
// "type": "Account",
// "referenceId": "ref1"
// },
// "name": "SampleAccount1",
// "phone": "1234567890",
// "website": "www.salesforce.com",
// "numberOfEmployees": "100",
// "industry": "Banking",
// "Contacts": {
// "records": [
// {
// "attributes": {
// "type": "Contact",
// "referenceId": "ref2"
// },
// "lastname": "Smith",
// "Title": "President",
// "email": "sample@salesforce.com"
// },
// {
// "attributes": {
// "type": "Contact",
// "referenceId": "ref3"
// },
// "lastname": "Evans",
// "title": "Vice President",
// "email": "sample@salesforce.com"
// }
// ]
// }
// },
// {
// "attributes": {
// "type": "Account",
// "referenceId": "ref4"
// },
// "name": "SampleAccount2",
// "phone": "1234567890",
// "website": "www.salesforce.com",
// "numberOfEmployees": "52000",
// "industry": "Banking",
// "childAccounts": {
// "records": [
// {
// "attributes": {
// "type": "Account",
// "referenceId": "ref5"
// },
// "name": "SampleChildAccount1",
// "phone": "1234567890",
// "website": "www.salesforce.com",
// "numberOfEmployees": "100",
// "industry": "Banking"
// }
// ]
// },
// "Contacts": {
// "records": [
// {
// "attributes": {
// "type": "Contact",
// "referenceId": "ref6"
// },
// "lastname": "Jones",
// "title": "President",
// "email": "sample@salesforce.com"
// }
// ]
// }
// }
// ]
// }
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("records[0].attributes.type","Account")
loo_Json.UpdateString("records[0].attributes.referenceId","ref1")
loo_Json.UpdateString("records[0].name","SampleAccount1")
loo_Json.UpdateString("records[0].phone","1234567890")
loo_Json.UpdateString("records[0].website","www.salesforce.com")
loo_Json.UpdateString("records[0].numberOfEmployees","100")
loo_Json.UpdateString("records[0].industry","Banking")
loo_Json.UpdateString("records[0].Contacts.records[0].attributes.type","Contact")
loo_Json.UpdateString("records[0].Contacts.records[0].attributes.referenceId","ref2")
loo_Json.UpdateString("records[0].Contacts.records[0].lastname","Smith")
loo_Json.UpdateString("records[0].Contacts.records[0].Title","President")
loo_Json.UpdateString("records[0].Contacts.records[0].email","sample@salesforce.com")
loo_Json.UpdateString("records[0].Contacts.records[1].attributes.type","Contact")
loo_Json.UpdateString("records[0].Contacts.records[1].attributes.referenceId","ref3")
loo_Json.UpdateString("records[0].Contacts.records[1].lastname","Evans")
loo_Json.UpdateString("records[0].Contacts.records[1].title","Vice President")
loo_Json.UpdateString("records[0].Contacts.records[1].email","sample@salesforce.com")
loo_Json.UpdateString("records[1].attributes.type","Account")
loo_Json.UpdateString("records[1].attributes.referenceId","ref4")
loo_Json.UpdateString("records[1].name","SampleAccount2")
loo_Json.UpdateString("records[1].phone","1234567890")
loo_Json.UpdateString("records[1].website","www.salesforce.com")
loo_Json.UpdateString("records[1].numberOfEmployees","52000")
loo_Json.UpdateString("records[1].industry","Banking")
loo_Json.UpdateString("records[1].childAccounts.records[0].attributes.type","Account")
loo_Json.UpdateString("records[1].childAccounts.records[0].attributes.referenceId","ref5")
loo_Json.UpdateString("records[1].childAccounts.records[0].name","SampleChildAccount1")
loo_Json.UpdateString("records[1].childAccounts.records[0].phone","1234567890")
loo_Json.UpdateString("records[1].childAccounts.records[0].website","www.salesforce.com")
loo_Json.UpdateString("records[1].childAccounts.records[0].numberOfEmployees","100")
loo_Json.UpdateString("records[1].childAccounts.records[0].industry","Banking")
loo_Json.UpdateString("records[1].Contacts.records[0].attributes.type","Contact")
loo_Json.UpdateString("records[1].Contacts.records[0].attributes.referenceId","ref6")
loo_Json.UpdateString("records[1].Contacts.records[0].lastname","Jones")
loo_Json.UpdateString("records[1].Contacts.records[0].title","President")
loo_Json.UpdateString("records[1].Contacts.records[0].email","sample@salesforce.com")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Resp = loo_Http.PostJson3("https://domain.com/services/data/v{{version}}/composite/tree/:SOBJECT_API_NAME","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)
// {
// "hasErrors": false,
// "results": [
// {
// "referenceId": "ref1",
// "id": "001..."
// },
// {
// "referenceId": "ref4",
// "id": "001..."
// },
// {
// "referenceId": "ref2",
// "id": "003.."
// },
// {
// "referenceId": "ref3",
// "id": "003..."
// },
// {
// "referenceId": "ref5",
// "id": "001..."
// },
// {
// "referenceId": "ref6",
// "id": "003..."
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
li_HasErrors = loo_JResp.BoolOf("hasErrors")
i = 0
li_Count_i = loo_JResp.SizeOfArray("results")
do while i < li_Count_i
loo_JResp.I = i
ls_ReferenceId = loo_JResp.StringOf("results[i].referenceId")
ls_Id = loo_JResp.StringOf("results[i].id")
i = i + 1
loop
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"records" :[{
"attributes" : {"type" : "Account", "referenceId" : "ref1"},
"name" : "SampleAccount1",
"phone" : "1234567890",
"website" : "www.salesforce.com",
"numberOfEmployees" : "100",
"industry" : "Banking",
"Contacts" : {
"records" : [{
"attributes" : {"type" : "Contact", "referenceId" : "ref2"},
"lastname" : "Smith",
"Title" : "President",
"email" : "sample@salesforce.com"
},{
"attributes" : {"type" : "Contact", "referenceId" : "ref3"},
"lastname" : "Evans",
"title" : "Vice President",
"email" : "sample@salesforce.com"
}]
}
},{
"attributes" : {"type" : "Account", "referenceId" : "ref4"},
"name" : "SampleAccount2",
"phone" : "1234567890",
"website" : "www.salesforce.com",
"numberOfEmployees" : "52000",
"industry" : "Banking",
"childAccounts" : {
"records" : [{
"attributes" : {"type" : "Account", "referenceId" : "ref5"},
"name" : "SampleChildAccount1",
"phone" : "1234567890",
"website" : "www.salesforce.com",
"numberOfEmployees" : "100",
"industry" : "Banking"
}]
},
"Contacts" : {
"records" : [{
"attributes" : {"type" : "Contact", "referenceId" : "ref6"},
"lastname" : "Jones",
"title" : "President",
"email" : "sample@salesforce.com"
}]
}
}]
}'
https://domain.com/services/data/v{{version}}/composite/tree/:SOBJECT_API_NAME
Postman Collection Item JSON
{
"name": "SObject Tree",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\"records\" :[{\n \"attributes\" : {\"type\" : \"Account\", \"referenceId\" : \"ref1\"},\n \"name\" : \"SampleAccount1\",\n \"phone\" : \"1234567890\",\n \"website\" : \"www.salesforce.com\",\n \"numberOfEmployees\" : \"100\",\n \"industry\" : \"Banking\",\n \"Contacts\" : {\n \"records\" : [{\n \"attributes\" : {\"type\" : \"Contact\", \"referenceId\" : \"ref2\"},\n \"lastname\" : \"Smith\",\n \"Title\" : \"President\",\n \"email\" : \"sample@salesforce.com\"\n },{\n \"attributes\" : {\"type\" : \"Contact\", \"referenceId\" : \"ref3\"},\n \"lastname\" : \"Evans\",\n \"title\" : \"Vice President\",\n \"email\" : \"sample@salesforce.com\"\n }]\n }\n },{\n \"attributes\" : {\"type\" : \"Account\", \"referenceId\" : \"ref4\"},\n \"name\" : \"SampleAccount2\",\n \"phone\" : \"1234567890\",\n \"website\" : \"www.salesforce.com\",\n \"numberOfEmployees\" : \"52000\",\n \"industry\" : \"Banking\",\n \"childAccounts\" : {\n \"records\" : [{\n \"attributes\" : {\"type\" : \"Account\", \"referenceId\" : \"ref5\"},\n \"name\" : \"SampleChildAccount1\",\n \"phone\" : \"1234567890\",\n \"website\" : \"www.salesforce.com\",\n \"numberOfEmployees\" : \"100\",\n \"industry\" : \"Banking\"\n }]\n },\n \"Contacts\" : {\n \"records\" : [{\n \"attributes\" : {\"type\" : \"Contact\", \"referenceId\" : \"ref6\"},\n \"lastname\" : \"Jones\",\n \"title\" : \"President\",\n \"email\" : \"sample@salesforce.com\"\n }]\n }\n }]\n}"
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/composite/tree/:SOBJECT_API_NAME",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"composite",
"tree",
":SOBJECT_API_NAME"
],
"variable": [
{
"key": "SOBJECT_API_NAME",
"value": "Account"
}
]
},
"description": "Creates one or more sObject trees with root records of the specified type. An sObject tree is a collection of nested, parent-child records with a single root record.\nIn the request data, you supply the record hierarchies, required and optional field values, each record’s type, and a reference ID for each record. Upon success, the response contains the IDs of the created records. If an error occurs while creating a record, the entire request fails. In this case, the response contains only the reference ID of the record that caused the error and the error information.\n\nThe request can contain the following:\nUp to a total of 200 records across all trees\nUp to five records of different types\nSObject trees up to five levels deep\nBecause an sObject tree can contain a single record, you can use this resource to create up to 200 unrelated records of the same type.\n\nWhen the request is processed and records are created, triggers, processes, and workflow rules fire separately for each of the following groups of records.\nRoot records across all sObject trees in the request\nAll second-level records of the same type—for example, second-level Contacts across all sObject trees in the request\nAll third-level records of the same type\nAll fourth-level records of the same type\nAll fifth-level records of the same type\n\nhttps://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobject_tree.htm"
},
"response": [
{
"name": "Successful SObject Tree",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\"records\" :[{\n \"attributes\" : {\"type\" : \"Account\", \"referenceId\" : \"ref1\"},\n \"name\" : \"SampleAccount1\",\n \"phone\" : \"1234567890\",\n \"website\" : \"www.salesforce.com\",\n \"numberOfEmployees\" : \"100\",\n \"industry\" : \"Banking\",\n \"Contacts\" : {\n \"records\" : [{\n \"attributes\" : {\"type\" : \"Contact\", \"referenceId\" : \"ref2\"},\n \"lastname\" : \"Smith\",\n \"Title\" : \"President\",\n \"email\" : \"sample@salesforce.com\"\n },{\n \"attributes\" : {\"type\" : \"Contact\", \"referenceId\" : \"ref3\"},\n \"lastname\" : \"Evans\",\n \"title\" : \"Vice President\",\n \"email\" : \"sample@salesforce.com\"\n }]\n }\n },{\n \"attributes\" : {\"type\" : \"Account\", \"referenceId\" : \"ref4\"},\n \"name\" : \"SampleAccount2\",\n \"phone\" : \"1234567890\",\n \"website\" : \"www.salesforce.com\",\n \"numberOfEmployees\" : \"52000\",\n \"industry\" : \"Banking\",\n \"childAccounts\" : {\n \"records\" : [{\n \"attributes\" : {\"type\" : \"Account\", \"referenceId\" : \"ref5\"},\n \"name\" : \"SampleChildAccount1\",\n \"phone\" : \"1234567890\",\n \"website\" : \"www.salesforce.com\",\n \"numberOfEmployees\" : \"100\",\n \"industry\" : \"Banking\"\n }]\n },\n \"Contacts\" : {\n \"records\" : [{\n \"attributes\" : {\"type\" : \"Contact\", \"referenceId\" : \"ref6\"},\n \"lastname\" : \"Jones\",\n \"title\" : \"President\",\n \"email\" : \"sample@salesforce.com\"\n }]\n }\n }]\n}"
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/composite/tree/:SOBJECT_API_NAME",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"composite",
"tree",
":SOBJECT_API_NAME"
],
"variable": [
{
"key": "SOBJECT_API_NAME",
"value": "Account"
}
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Mon, 20 Nov 2023 15:23:41 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": "Sforce-Limit-Info",
"value": "api-usage=41/15000"
},
{
"key": "Content-Type",
"value": "application/json;charset=UTF-8"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": "{\n \"hasErrors\": false,\n \"results\": [\n {\n \"referenceId\": \"ref1\",\n \"id\": \"001...\"\n },\n {\n \"referenceId\": \"ref4\",\n \"id\": \"001...\"\n },\n {\n \"referenceId\": \"ref2\",\n \"id\": \"003..\"\n },\n {\n \"referenceId\": \"ref3\",\n \"id\": \"003...\"\n },\n {\n \"referenceId\": \"ref5\",\n \"id\": \"001...\"\n },\n {\n \"referenceId\": \"ref6\",\n \"id\": \"003...\"\n }\n ]\n}"
}
]
}