create_record
Add new records to Salesforce by specifying the object type and field values. Use this tool to insert contacts, accounts, or other data into your Salesforce org.
Instructions
Create a new Salesforce record. Provide the object name and a dict of field values.
Call describe_object first to see required fields and valid picklist values.
The data dict keys must be field API names (e.g., LastName, not "Last Name").
Returns the new record's ID on success.
Example: create_record("Contact", {"LastName": "Smith", "Email": "smith@example.com"})Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_name | Yes | ||
| data | Yes |