update_record
Modify existing records in Salesforce by specifying the object name, record ID, and updated data. Streamline record management within the salesforce-mcp server.
Instructions
Updates an existing record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | The updated data for the record | |
object_name | Yes | The name of the Salesforce object (e.g., 'Account', 'Contact') | |
record_id | Yes | The ID of the record to update |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"additionalProperties": true,
"description": "The updated data for the record",
"properties": {},
"type": "object"
},
"object_name": {
"description": "The name of the Salesforce object (e.g., 'Account', 'Contact')",
"type": "string"
},
"record_id": {
"description": "The ID of the record to update",
"type": "string"
}
},
"required": [
"object_name",
"record_id",
"data"
],
"type": "object"
}