Salesforce SOQL
Executes Salesforce SOQL query.
This action allows you to run a custom SOQL (Salesforce Object Query Language) query and retrieve results directly from your Salesforce instance. Useful for fetching specific records or field values in flows.
Action Inputs
Name | Type | Description |
---|---|---|
Salesforce Instance URL | String | The URL of the Salesforce instance, generated during authentication. |
Salesforce Access Token | SensitiveString | The access token for Salesforce, generated during authentication. |
SOQL Query | String | The full SOQL query to be executed. |
Action Outputs
Name | Type | Description |
---|---|---|
Done | Boolean | Indicates whether the SOQL operation was completed successfully. |
Success | Boolean | true if the query was executed successfully; false otherwise. |
Total Size | Number | Total number of records returned. |
Records | List | List of records returned as JSON objects. |
This action is ideal for retrieving Salesforce data dynamically based on any valid SOQL statement.
Updated 6 days ago