Create SObject Record
sf_create_recordCreates a single Salesforce record by providing the object API name and field values via the REST API.
Instructions
Creates a single SObject record via the Salesforce REST API. Provide the object API name and a fields object with field API names and values. For bulk creation (100+ records), use sf_bulk_import_records instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | Yes | Key-value pairs of field API names to values, e.g. {Name: 'Acme', Industry: 'Technology'} | |
| objectApiName | Yes | SObject API name, e.g. 'Account', 'Contact', 'My_Object__c' |