salesforce_bulk_update
Update multiple Salesforce records at once by specifying object type and record IDs with field changes. Returns per-record success status to confirm results.
Instructions
Bulk update multiple records.
Use this to update many records efficiently.
Args: sobject: SObject type (e.g., 'Account', 'Contact') records: List of records to update. Each record MUST include an 'Id' field to identify which record to update. Example: [ {"Id": "001xx...", "Industry": "Tech"}, {"Id": "001xx...", "Industry": "Finance"} ]
Returns: List of results for each record with success status
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| records | Yes | ||
| sobject | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |