salesforce_create_record
Create a Salesforce record by specifying the object type and field values. Returns the new record ID and success status.
Instructions
Create a new Salesforce record.
Args: sobject: SObject type (e.g., 'Account', 'Contact', 'Lead') data: Record field values as key-value pairs. Example: {"Name": "Acme Corp", "Industry": "Technology"}
Returns: Created record info including: - id: The new record's ID - success: Whether creation succeeded - errors: Any errors that occurred
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| sobject | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||