Get SObject Record by ID
sf_get_recordRetrieve a single Salesforce record by 15 or 18-character ID, returning all or selected fields. Provide the SObject API name and record ID to fetch the data you need.
Instructions
Retrieves a single Salesforce record by its 15 or 18 character record ID. Returns all or specified fields.
objectApiName: the SObject API name (e.g. 'Account', 'Opportunity') recordId: the 15 or 18 character Salesforce record ID fields: optional list of field API names to return (omit for all fields)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | No | Field API names to retrieve. Empty = all available fields | |
| recordId | Yes | Record ID (15 or 18 characters) | |
| objectApiName | Yes | SObject API name, e.g. 'Account' |