sf_create
Create records in any Salesforce object. Specify the object API name and field values to return the new record's ID.
Instructions
Create a record in any Salesforce object (Account, Case, Contact, Lead, Opportunity, or any custom object).
Examples: object="Case" fields={Subject:"Server outage", Status:"New", Priority:"High", Origin:"Web"} object="Account" fields={Name:"Acme Corp", Industry:"Technology", BillingCity:"San Francisco"} object="Contact" fields={FirstName:"Jane", LastName:"Smith", Email:"jane@acme.com", AccountId:"001..."} object="Lead" fields={FirstName:"Bob", LastName:"Jones", Company:"StartupCo", Status:"Open - Not Contacted"}
Returns the Id of the created record.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object | Yes | Salesforce object API name (e.g. "Case", "Account", "Contact", "MyCustomObject__c") | |
| fields | Yes | Field API name → value pairs |