Create SObject Record
sf_create_recordCreates a single SObject record in Salesforce using the REST API. Provide the object API name and field values. For bulk creation of 100+ records, use the bulk import tool instead.
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' |