CRM
Execute CRM Query
Executes a query against the connected CRM platform (e.g., Salesforce SOQL). The query is validated for security before execution.
post/crm/query
Request body
Example request
{
"query": "SELECT Id, Name, Amount FROM Opportunity WHERE StageName = 'Closed Won' LIMIT 10"
}Response
Query executed successfully
Example response
{
"records": [
{
"Id": "006ABC123",
"Name": "Enterprise Deal",
"Amount": 50000
}
],
"totalSize": 1,
"done": true
}