ActionSalesforceUpdated September 2026

How do I list Salesforce records?

Short answer: You can list salesforce records in Salesforce by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Salesforce List Salesforce Records action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

List Salesforce Records in Salesforce — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Object Type
sobject
optionsRequiredObject Type. Options: Lead, Contact, Account, Opportunity, Case, Task
Fields
fields
stringOptionalComma-separated field names to retrieve
WHERE Clause
where_clause
stringOptionalOptional SOQL WHERE clause to filter results (without the WHERE keyword)
Order By
order_by
stringOptionalField name and direction to sort results
Limit
limit
stringOptionalMaximum number of records to return
Sample request
{
"sobject": "{{trigger.sobject}}",
"fields": "e.g. Id,Name,Email,CreatedDate",
"where_clause": "e.g. CreatedDate = THIS_MONTH AND Status = 'Open'",
"order_by": "e.g. CreatedDate DESC",
"limit": "e.g. 50"
}
Returns
{
"done": true,
"records": [
{
"Id": "001Dn00000XXXXX",
"Name": "Acme Inc",
"CreatedDate": "2025-01-15T12:00:00.000Z"
}
],
"totalSize": 5
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for List Salesforce Records.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about List Salesforce Records.

What does the List Salesforce Records action do in Salesforce?
Paginated records of a specific SObject with filters. For "all opportunities in this pipeline" or "leads created since timestamp" sync workflows.
What inputs does List Salesforce Records require?
Required: Object Type. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Salesforce returns an error?
The run history shows the failed step with its input and the error message Salesforce returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does List Salesforce Records support batch operations?
Run List Salesforce Records inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Salesforce's rate limits.
More actions

Other Salesforce actions.

List Salesforce Records in Salesforce — start free