Chilkat Online Tools

Ruby / Salesforce Platform APIs / SObject Tree

Back to Collection Items

require 'chilkat'

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = Chilkat::CkHttp.new()

# 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"
#           }
#         ]
#       }
#     }
#   ]
# }

json = Chilkat::CkJsonObject.new()
json.UpdateString("records[0].attributes.type","Account")
json.UpdateString("records[0].attributes.referenceId","ref1")
json.UpdateString("records[0].name","SampleAccount1")
json.UpdateString("records[0].phone","1234567890")
json.UpdateString("records[0].website","www.salesforce.com")
json.UpdateString("records[0].numberOfEmployees","100")
json.UpdateString("records[0].industry","Banking")
json.UpdateString("records[0].Contacts.records[0].attributes.type","Contact")
json.UpdateString("records[0].Contacts.records[0].attributes.referenceId","ref2")
json.UpdateString("records[0].Contacts.records[0].lastname","Smith")
json.UpdateString("records[0].Contacts.records[0].Title","President")
json.UpdateString("records[0].Contacts.records[0].email","sample@salesforce.com")
json.UpdateString("records[0].Contacts.records[1].attributes.type","Contact")
json.UpdateString("records[0].Contacts.records[1].attributes.referenceId","ref3")
json.UpdateString("records[0].Contacts.records[1].lastname","Evans")
json.UpdateString("records[0].Contacts.records[1].title","Vice President")
json.UpdateString("records[0].Contacts.records[1].email","sample@salesforce.com")
json.UpdateString("records[1].attributes.type","Account")
json.UpdateString("records[1].attributes.referenceId","ref4")
json.UpdateString("records[1].name","SampleAccount2")
json.UpdateString("records[1].phone","1234567890")
json.UpdateString("records[1].website","www.salesforce.com")
json.UpdateString("records[1].numberOfEmployees","52000")
json.UpdateString("records[1].industry","Banking")
json.UpdateString("records[1].childAccounts.records[0].attributes.type","Account")
json.UpdateString("records[1].childAccounts.records[0].attributes.referenceId","ref5")
json.UpdateString("records[1].childAccounts.records[0].name","SampleChildAccount1")
json.UpdateString("records[1].childAccounts.records[0].phone","1234567890")
json.UpdateString("records[1].childAccounts.records[0].website","www.salesforce.com")
json.UpdateString("records[1].childAccounts.records[0].numberOfEmployees","100")
json.UpdateString("records[1].childAccounts.records[0].industry","Banking")
json.UpdateString("records[1].Contacts.records[0].attributes.type","Contact")
json.UpdateString("records[1].Contacts.records[0].attributes.referenceId","ref6")
json.UpdateString("records[1].Contacts.records[0].lastname","Jones")
json.UpdateString("records[1].Contacts.records[0].title","President")
json.UpdateString("records[1].Contacts.records[0].email","sample@salesforce.com")

# Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>")
http.SetRequestHeader("Content-Type","application/json")

# resp is a CkHttpResponse
resp = http.PostJson3("https://domain.com/services/data/v{{version}}/composite/tree/:SOBJECT_API_NAME","application/json",json)
if (http.get_LastMethodSuccess() == false)
    print http.lastErrorText() + "\n";
    exit
end

sbResponseBody = Chilkat::CkStringBuilder.new()
resp.GetBodySb(sbResponseBody)

jResp = Chilkat::CkJsonObject.new()
jResp.LoadSb(sbResponseBody)
jResp.put_EmitCompact(false)

print "Response Body:" + "\n";
print jResp.emit() + "\n";

respStatusCode = resp.get_StatusCode()
print "Response Status Code = " + respStatusCode.to_s() + "\n";
if (respStatusCode >= 400)
    print "Response Header:" + "\n";
    print resp.header() + "\n";
    print "Failed." + "\n";

    exit
end

# 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

hasErrors = jResp.BoolOf("hasErrors")
i = 0
count_i = jResp.SizeOfArray("results")
while i < count_i
    jResp.put_I(i)
    referenceId = jResp.stringOf("results[i].referenceId")
    id = jResp.stringOf("results[i].id")
    i = i + 1
end

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}"
    }
  ]
}