Bulk update Salesforce records
sf_bulk_update_recordsUpdate up to 200 Salesforce records at once using their Ids and changed fields; larger batches are split automatically.
Instructions
Update up to 200 records in one call (PATCH /composite/sobjects). Each record must include its Id plus the fields to change. Larger inputs are split into multiple calls automatically.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| records | Yes | Array of field maps, each including "Id", e.g. [{ "Id": "001...", "Name": "A" }]. | |
| sobject | Yes | API name of the sObject, e.g. "Account", "Contact", or "My_Object__c". | |
| allOrNone | No | Roll back the entire batch if any record fails. Default false. |