AvantGuard - ConnectSecure icon

AvantGuard - ConnectSecure

AvantGuard - ConnectSecure

Actions223

Overview

This node interacts with the "Reports" resource to retrieve detailed information about a specific report job view. It is designed to fetch the status or results of a report generation job by its unique identifier. This functionality is useful in scenarios where users need to monitor or obtain the output of asynchronous report generation processes.

For example, after initiating a report generation job elsewhere, this node can be used to poll or retrieve the current state and details of that job using its ID.

Properties

Name Meaning
X USER ID The user identifier required for authentication or scoping the request.
Id The numeric identifier of the report job whose details are to be retrieved.
  • X USER ID is passed as a header in the API request.
  • Id is used as a path or query parameter to specify which report job to retrieve.

Output

The node outputs JSON data representing the detailed view of the specified report job. This typically includes fields such as job status, creation time, completion time, result URLs, or error messages if the job failed.

No binary data output is indicated in the source code or properties.

Dependencies

  • Requires an API key credential (or similar) configured in n8n to authenticate requests.
  • Depends on the base URL and endpoints defined in the bundled OpenAPI specification (openapi.json).
  • The node uses HTTP headers including X-USER-ID for user identification.
  • The node expects the external service to support the "Reports" resource with a "Get Retrieve Report Job View" operation.

Troubleshooting

  • Missing or invalid X USER ID: The API may reject requests without a valid user ID header. Ensure the property is set correctly.
  • Invalid or non-existent Id: If the report job ID does not exist or is incorrect, the API will likely return a 404 or similar error.
  • Authentication errors: If the API key or credentials are missing or invalid, requests will fail with authorization errors.
  • Network or connectivity issues: Ensure the base URL and network access to the API endpoint are correct and reachable.

Links and References

  • Refer to the external API documentation for the "Reports" resource and the "Retrieve Report Job View" operation for detailed response schema and usage.
  • Consult n8n documentation on setting up API credentials and HTTP header parameters.

Discussion