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_GraphId
integer li_IsSuccessful
integer j
integer li_Count_j
string ls_Id
integer li_Success
string ls_Location
integer li_HttpStatusCode
string ls_ReferenceId
integer k
integer li_Count_k
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.
// {
// "graphs": [
// {
// "graphId": "graph1",
// "compositeRequest": [
// {
// "method": "POST",
// "url": "/services/data/v{{version}}/sobjects/Account/",
// "referenceId": "newAccount",
// "body": {
// "Name": "ACME Inc.",
// "Custom__c": "Hello world"
// }
// },
// {
// "method": "GET",
// "url": "/services/data/v{{version}}/sobjects/Account/@{newAccount.id}",
// "referenceId": "newAccountInfo"
// }
// ]
// }
// ]
// }
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("graphs[0].graphId","graph1")
loo_Json.UpdateString("graphs[0].compositeRequest[0].method","POST")
loo_Json.UpdateString("graphs[0].compositeRequest[0].url","/services/data/v{{version}}/sobjects/Account/")
loo_Json.UpdateString("graphs[0].compositeRequest[0].referenceId","newAccount")
loo_Json.UpdateString("graphs[0].compositeRequest[0].body.Name","ACME Inc.")
loo_Json.UpdateString("graphs[0].compositeRequest[0].body.Custom__c","Hello world")
loo_Json.UpdateString("graphs[0].compositeRequest[1].method","GET")
loo_Json.UpdateString("graphs[0].compositeRequest[1].url","/services/data/v{{version}}/sobjects/Account/@{newAccount.id}")
loo_Json.UpdateString("graphs[0].compositeRequest[1].referenceId","newAccountInfo")
// 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/graph","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)
// {
// "graphs": [
// {
// "graphId": "graph1",
// "graphResponse": {
// "compositeResponse": [
// {
// "body": {
// "id": "0014H00002x6HUhQAM",
// "success": true,
// "errors": [
// ]
// },
// "httpHeaders": {
// "Location": "/services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM"
// },
// "httpStatusCode": 201,
// "referenceId": "newAccount"
// },
// {
// "body": {
// "id": "0034H00002JsInQQAV",
// "success": true,
// "errors": [
// ]
// },
// "httpHeaders": {
// "Location": "/services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV"
// },
// "httpStatusCode": 201,
// "referenceId": "newContact"
// }
// ]
// },
// "isSuccessful": true
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
i = 0
li_Count_i = loo_JResp.SizeOfArray("graphs")
do while i < li_Count_i
loo_JResp.I = i
ls_GraphId = loo_JResp.StringOf("graphs[i].graphId")
li_IsSuccessful = loo_JResp.BoolOf("graphs[i].isSuccessful")
j = 0
li_Count_j = loo_JResp.SizeOfArray("graphs[i].graphResponse.compositeResponse")
do while j < li_Count_j
loo_JResp.J = j
ls_Id = loo_JResp.StringOf("graphs[i].graphResponse.compositeResponse[j].body.id")
li_Success = loo_JResp.BoolOf("graphs[i].graphResponse.compositeResponse[j].body.success")
ls_Location = loo_JResp.StringOf("graphs[i].graphResponse.compositeResponse[j].httpHeaders.Location")
li_HttpStatusCode = loo_JResp.IntOf("graphs[i].graphResponse.compositeResponse[j].httpStatusCode")
ls_ReferenceId = loo_JResp.StringOf("graphs[i].graphResponse.compositeResponse[j].referenceId")
k = 0
li_Count_k = loo_JResp.SizeOfArray("graphs[i].graphResponse.compositeResponse[j].body.errors")
do while k < li_Count_k
loo_JResp.K = k
k = k + 1
loop
j = j + 1
loop
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 '{
"graphs": [
{
"graphId": "graph1",
"compositeRequest": [
{
"method": "POST",
"url": "/services/data/v{{version}}/sobjects/Account/",
"referenceId": "newAccount",
"body": {
"Name": "ACME Inc.",
"Custom__c": "Hello world"
}
},
{
"method": "GET",
"url": "/services/data/v{{version}}/sobjects/Account/@{newAccount.id}",
"referenceId": "newAccountInfo"
}
]
}
]
}'
https://domain.com/services/data/v{{version}}/composite/graph
Postman Collection Item JSON
{
"name": "Composite Graph",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"graphs\": [\n {\n \"graphId\": \"graph1\",\n \"compositeRequest\": [\n {\n \"method\": \"POST\",\n \"url\": \"/services/data/v{{version}}/sobjects/Account/\",\n \"referenceId\": \"newAccount\",\n \"body\": {\n \"Name\": \"ACME Inc.\",\n \"Custom__c\": \"Hello world\"\n }\n },\n {\n \"method\": \"GET\",\n \"url\": \"/services/data/v{{version}}/sobjects/Account/@{newAccount.id}\",\n \"referenceId\": \"newAccountInfo\"\n }\n ]\n }\n ]\n}"
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/composite/graph",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"composite",
"graph"
]
},
"description": "Composite graphs provide an enhanced way to perform composite requests, which execute a series of REST API requests in a single call.\nRegular composite requests allow you to execute a series of REST API requests in a single call. And you can use the output of one request as the input to a subsequent request.\n\nComposite graphs extend this by allowing you to assemble a more complicated and complete series of related objects and records.\n\nComposite graphs also enable you to ensure that the steps in a given set of operations are either all completed or all not completed. This avoids requiring you to check for a mix of successful and unsuccessful results.\n\nRegular composite requests have a limit of 25 subrequests. Composite graphs increase this limit to 500. This gives a single API call much greater power.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_graph_introduction.htm"
},
"response": [
{
"name": "Successful Composite Graph",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"graphs\": [\n {\n \"graphId\": \"graph1\",\n \"compositeRequest\": [\n {\n \"method\": \"POST\",\n \"url\": \"/services/data/v{{version}}/sobjects/Account/\",\n \"referenceId\": \"newAccount\",\n \"body\": {\n \"Name\": \"ACME Inc.\"\n }\n },\n {\n \"method\": \"POST\",\n \"url\": \"/services/data/v{{version}}/sobjects/Contact/\",\n \"referenceId\": \"newContact\",\n \"body\": {\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"AccountId\": \"@{newAccount.id}\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/composite/graph",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"composite",
"graph"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "cache-control",
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
},
{
"key": "content-type",
"value": "application/json;charset=UTF-8"
}
],
"cookie": [
],
"body": "{\n \"graphs\": [\n {\n \"graphId\": \"graph1\",\n \"graphResponse\": {\n \"compositeResponse\": [\n {\n \"body\": {\n \"id\": \"0014H00002x6HUhQAM\",\n \"success\": true,\n \"errors\": []\n },\n \"httpHeaders\": {\n \"Location\": \"/services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM\"\n },\n \"httpStatusCode\": 201,\n \"referenceId\": \"newAccount\"\n },\n {\n \"body\": {\n \"id\": \"0034H00002JsInQQAV\",\n \"success\": true,\n \"errors\": []\n },\n \"httpHeaders\": {\n \"Location\": \"/services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV\"\n },\n \"httpStatusCode\": 201,\n \"referenceId\": \"newContact\"\n }\n ]\n },\n \"isSuccessful\": true\n }\n ]\n}"
}
]
}