Update a Salesforce record
sf_update_recordUpdate a single Salesforce record by sending only the fields to change. Returns success when the update is applied.
Instructions
Update a single record (PATCH /sobjects/{SObject}/{id}). Pass only the fields you want to change. Returns 204 No Content on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The 15- or 18-character Salesforce record Id. | |
| fields | Yes | Field name -> value map, e.g. { "Name": "Acme", "Industry": "Technology" }. Use sf_describe_object to discover field names and types. | |
| sobject | Yes | API name of the sObject, e.g. "Account", "Contact", or "My_Object__c". | |
| tooling | No | Update via the Tooling API instead. Default false. |