{ "opencollection": "1.0.0", "info": { "name": "Salesforce Analytics (CRM Analytics) REST Actions Custom Actions API", "version": "63.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": "Custom Actions", "type": "folder" }, "items": [ { "info": { "name": "List custom invocable actions", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/actions/custom" }, "docs": "Returns a list of all custom invocable actions defined in the org. Custom actions are Apex classes annotated with @InvocableMethod." }, { "info": { "name": "Describe a custom action", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/actions/custom/:actionName", "params": [ { "name": "actionName", "value": "", "type": "path", "description": "The API name of the custom action" } ] }, "docs": "Returns the input and output parameters for a specific custom invocable action." }, { "info": { "name": "Invoke a custom action", "type": "http" }, "http": { "method": "POST", "url": "https://{instance}.salesforce.com/services/data/v63.0/wave/actions/custom/:actionName", "params": [ { "name": "actionName", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Invokes a custom Apex invocable action. Provide the required inputs as defined by the @InvocableVariable annotations on the action's input class." } ] } ], "bundled": true }