create_record
Create a new record in Salesforce with standard and custom fields. Provide the object name and data as key-value pairs.
Instructions
Create a new record in Salesforce. Supports both standard and custom fields in the data object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectName | Yes | API name of the Salesforce object | |
| data | Yes | Record data as key-value pairs. For custom fields, use the API name with __c suffix (e.g., { "Name": "Test", "Custom_Field__c": "Value" }) |