Find records
The Salesforce REST API Find Records tool allows users to retrieve specific fields from one or multiple records within any Salesforce object. It provides easy access to Salesforce data through configurable parameters, enabling efficient data extraction for various business needs.
Features
- Retrieve selected fields from chosen Salesforce objects.
- Support for fetching multiple records by specifying their IDs.
- Option to retrieve all records of a particular object if no record IDs are specified.
- Strict parameter formatting for accurate and reliable API calls.
- Integrated with Pipedream for seamless automation workflows.
Benefits
- Enhances data accessibility by allowing precise field selection.
- Saves time by retrieving multiple records in a single API request.
- Improves data management through flexible filtering options.
- Facilitates integration with other tools and platforms via Pipedream.
- Simplifies Salesforce data retrieval to support reporting, analytics, or CRM operations.
Description
Retrieves selected fields for some or all records of a selected object. See the documentation
IMPORTANT: The arguments have specific formats. Please follow the instructions below:
- fieldsToObtain: Return JSON in this format: string[]
- recordIds: Return JSON in this format: string[]
Parameters
3 parameters
| Name | Type | Description |
|---|---|---|
| sobjectTyperequired | string | The type of object to obtain records of. |
| fieldsToObtainrequired | string[] | Select the field(s) to obtain for the selected record(s) (or all records). |
| recordIds | string[] | The record(s) to retrieve. If not specified, all records will be retrieved. |