Actions36
- Automation Actions
- Execution Actions
- Notification Actions
- Platform Actions
- Prompt Actions
- Proxy Actions
- Result Actions
- Run Automation Actions
- Social Account Actions
- Workflow Actions
- Workspace Actions
Overview
This node interacts with the TexAu Cloud platform to perform operations related to executions. Specifically, the "Get" operation under the "Execution" resource retrieves detailed information about a particular execution instance by its unique Execution ID. This is useful for users who want to monitor or analyze the status and results of automated workflows or tasks previously run on TexAu.
Practical examples include:
- Fetching the outcome of a specific automation run to verify success or failure.
- Retrieving execution metadata for logging or auditing purposes.
- Integrating execution details into other workflows or dashboards for real-time monitoring.
Properties
Name | Meaning |
---|---|
Execution ID | The unique identifier of the execution to retrieve. This is required to specify which execution's details to fetch. |
Output
The node outputs JSON data representing the detailed information of the requested execution. This typically includes fields such as execution status, timestamps, input parameters, output results, and any error messages if applicable.
If the execution involves binary data (e.g., files processed during the run), the node would also handle binary output accordingly, but this is not explicitly shown in the provided code.
Dependencies
- Requires an API key credential for authenticating requests to the TexAu Cloud API.
- The base URL for API requests is
https://v2-prod-api.texau.com
. - The node depends on internal helper functions to make HTTP GET requests to the TexAu API endpoints.
Troubleshooting
Common issues:
- Providing an invalid or empty Execution ID will result in failure to retrieve execution details.
- Network connectivity problems or incorrect API credentials can cause authentication errors.
- If the specified execution does not exist or has been deleted, the API will return an error.
Error messages and resolutions:
- "Execution not found": Verify that the Execution ID is correct and corresponds to an existing execution.
- Authentication errors: Ensure that the API key credential is valid and has sufficient permissions.
- Network timeouts or unreachable host: Check internet connection and TexAu service status.
Links and References
- TexAu Official Documentation (for API details and usage)
- TexAu API Reference (for endpoint specifics)