test_app_action
Test app actions directly by providing app ID, action ID, and input data to verify functionality before integrating into workflows.
Instructions
Test an app action in isolation without creating a workflow or execution. Pass the appId and actionId (from list_apps / get_app_actions) plus input data to run the action directly and see results immediately. Useful for verifying inputs before wiring a step into a workflow. Example: test_app_action("web-scraping", "scrape", { url: "https://example.com" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App ID (e.g., "agentled", "web-scraping", "hunter") | |
| actionId | Yes | Action ID (e.g., "scrape", "get-linkedin-company-from-url", "find-email-person-domain") | |
| input | No | Input data for the action (e.g., { url: "https://example.com" }) | |
| bypassCache | No | Skip cache and run against the live API (default: false) |