update_record
Modify existing Salesforce records by specifying the object type, record ID, and fields to update. Change only the data you need while maintaining record integrity.
Instructions
Update fields on an existing Salesforce record. Only include fields you want to change.
Example: update_record("Opportunity", "006...", {"StageName": "Closed Won", "CloseDate": "2026-03-15"})
Returns HTTP 204 on success.Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_name | Yes | ||
| record_id | Yes | ||
| data | Yes |