-
-
Save arun12209/67affe407cb0020b070b84656c4e7287 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compositeRequest": [ | |
{ | |
"method": "POST", | |
"url": "/services/data/v52.0/sobjects/Account", | |
"referenceId": "newAccount", | |
"body": { | |
"Name": "Acme Inc." | |
} | |
}, | |
{ | |
"method": "POST", | |
"url": "/services/data/v52.0/sobjects/Contact", | |
"referenceId": "newContact", | |
"body": { | |
"LastName": "Smith", | |
"FirstName": "John", | |
"AccountId": "@{newAccount.id}" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment