Leverage Composite REST Requests with the Winter ’25 Release
As of the Winter ’25 Salesforce Release, developers are now able to leverage composite REST requests when interacting with an Orgs data via the Salesforce SObject API. This functionality allows developers to wrap a series of multiple sub-requests together into one API call. In certain situations this could be a boon for efficiency, performance, and reducing the number of API limits used in calls, as the number of round server trips needed can now be reduced.
These sub-requests can also be chained to allow for the output of one request to be used in a following sub-request. This, combined with the ability to mix different operation types (All CRUD – creating, updating, deleting, and retrieving) means that complex requests that are dependant on one another are able to be executed in one single API call.
For example, you could now update an Account, create a new Contact, and then link them via a junction object all within one single REST request!
Extremely powerful functionality to integrate into your existing or new systems for improvements in efficiency, performance, as well as affording you savings on your Org’s API call limits.
Further information can be found here! Read more