TexAu icon

TexAu

Perform Opration on TexAu Cloud

Overview

This node interacts with the TexAu Cloud platform to perform operations related to workflows, specifically retrieving nodes of a given workflow. It is useful when you want to programmatically access the details or structure of a workflow by its identifier. For example, you might use this node to fetch all nodes within a specific workflow to analyze or manipulate them in subsequent automation steps.

Properties

Name Meaning
Workflow ID The unique identifier of the workflow whose nodes you want to retrieve. This is required.

Output

The node outputs JSON data representing the nodes of the specified workflow. Each item in the output corresponds to a node within that workflow, containing details as provided by the TexAu API. The exact structure depends on the API response but typically includes node identifiers, types, configurations, and relationships within the workflow.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for TexAu Cloud to authenticate requests.
  • The node makes HTTP GET requests to the TexAu API endpoint:
    https://v2-prod-api.texau.com/api/v1/public/workflows/{workflowId}/nodes
  • Proper configuration of the TexAu API credentials in n8n is necessary.

Troubleshooting

  • Common Issues:

    • Invalid or missing Workflow ID will cause the request to fail.
    • Incorrect or expired API credentials will result in authentication errors.
    • Network connectivity issues can prevent reaching the TexAu API.
  • Error Messages:

    • 401 Unauthorized: Check that the API key credential is correctly set and valid.
    • 404 Not Found: Verify that the Workflow ID exists and is accessible.
    • 400 Bad Request: Ensure the Workflow ID format is correct and not empty.

Resolving these usually involves verifying input parameters and credential setup.

Links and References

Discussion