salesforce_create
Create new records in Salesforce objects by specifying the object type and field data. Validates required fields automatically for accurate data entry.
Instructions
Create a new record in any Salesforce object. Automatically handles required fields validation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sobject | Yes | SObject API name (e.g., 'Contact', 'Account', 'CustomObject__c'). Use exact API names. | |
| data | Yes | Field values for the new record. Use API field names as keys (e.g., {'FirstName': 'John', 'LastName': 'Doe', 'Email': 'john@example.com'}) |