provider Query GET
/query @utdk/salesforce
/query Execute a SOQL query
Execute a Salesforce Object Query Language (SOQL) SELECT statement to retrieve records. SOQL is similar to SQL but operates on Salesforce objects and their relationships. Supports filtering, sorting, and relationship traversal.
- q query required
- The SOQL query string (e.g. 'SELECT Id, Name FROM Account WHERE CreatedDate = TODAY')
- string
Try it
Authentication
Configure credentials for Salesforce REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import salesforce from '@utdk/salesforce';
await salesforce.query()