{ "opencollection": "1.0.0", "info": { "name": "Salesforce Experience Cloud Salesforce CMS Connect Actions Query API", "version": "59.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://login.salesforce.com/services/oauth2/authorize", "accessTokenUrl": "https://login.salesforce.com/services/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Query", "type": "folder" }, "items": [ { "info": { "name": "Salesforce Experience Cloud Execute a SOQL Query", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v59.0/connect/cms/query", "params": [ { "name": "q", "value": "SELECT Id, Name FROM Account LIMIT 10", "type": "query", "description": "The SOQL query string to execute" } ] }, "docs": "Executes a SOQL query and returns the matching records. Supports standard SOQL syntax including SELECT, FROM, WHERE, ORDER BY, LIMIT, and OFFSET clauses. Returns paginated results with a nextRecordsUrl for large result sets." }, { "info": { "name": "Salesforce Experience Cloud Execute a SOQL Query Including Deleted Records", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v59.0/connect/cms/queryAll", "params": [ { "name": "q", "value": "", "type": "query", "description": "The SOQL query string to execute" } ] }, "docs": "Executes a SOQL query and returns matching records including deleted and archived records. Otherwise behaves identically to the standard query endpoint." }, { "info": { "name": "Salesforce Experience Cloud Get Next Page of Query Results", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v59.0/connect/cms/query/:queryLocator", "params": [ { "name": "queryLocator", "value": "", "type": "path", "description": "Query locator from the previous query result" } ] }, "docs": "Retrieves the next page of results for a previously executed SOQL query using the query locator from the nextRecordsUrl." } ] } ], "bundled": true }