Salesforce Certified Integration Architect — Question 80

An integration architect has built a solution using REST API, updating Account, Contact, and other related information. The data volumes have increased, resulting in higher API calls consumed, and some days the limits are exceeded. A decision was made to decrease the number of API calls using bulk updates. The customer prefers to continue using REST API to avoid architecture changes.

Which REST API composite recourses should the integration architect use to allow up to 200 records in one API call?

Answer options

Correct answer: A

Explanation

The correct answer is 'Batch' because it allows multiple records to be processed in a single API call, thereby reducing the total number of calls made. The 'Composite' resource is used for related requests but does not support as many records in one call. The 'SObject Tree' allows for creating or updating a tree of related records but is limited to a smaller number of records compared to Batch.