bulk_update_records
Update multiple records of a Salesforce object in a single operation by providing the object name and a list of records with IDs.
Instructions
Updates multiple records of a specified SObject type in bulk. Each record must have an 'Id' field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_name | Yes | The API name of the Salesforce SObject (e.g., 'Account', 'MyCustomObject__c'). | |
| data | Yes | A list of records to update. Each record is a dictionary of field names and values, and *must* include an 'Id' field. |