update_record
Update an existing Salesforce record by specifying the object, record ID, and field values.
Instructions
Update an existing record in Salesforce. Supports updating both standard and custom fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectName | Yes | API name of the Salesforce object | |
| recordId | Yes | ID of the record to update | |
| data | Yes | Record data to update as key-value pairs. For custom fields, use the API name with __c suffix (e.g., { "Custom_Field__c": "New Value" }) |