create_record
Create new records in Salesforce by specifying the object name and data fields. Integrates with the MCP Salesforce Connector for streamlined Salesforce data management.
Instructions
Creates a new record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | The data for the new record | |
object_name | Yes | The name of the Salesforce object (e.g., 'Account', 'Contact') |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"additionalProperties": true,
"description": "The data for the new record",
"properties": {},
"type": "object"
},
"object_name": {
"description": "The name of the Salesforce object (e.g., 'Account', 'Contact')",
"type": "string"
}
},
"required": [
"object_name",
"data"
],
"type": "object"
}