AvantGuard - ConnectSecure icon

AvantGuard - ConnectSecure

AvantGuard - ConnectSecure

Actions223

Overview

This node operation retrieves a list or view of report jobs from the "Reports" resource. It is useful for scenarios where users need to fetch existing report job data, such as monitoring report generation status, auditing report requests, or integrating report job information into workflows. For example, a user might want to retrieve all report jobs filtered by certain conditions, limit the number of results returned, or order them by specific fields.

Properties

Name Meaning
X USER ID User Id (string). This header identifies the user making the request and is required.
Additional Query Parameters Optional query parameters to refine the retrieval:
- Condition: Query condition string to filter report jobs
- Skip: Number of records to skip (pagination)
- Limit: Maximum number of records to return
- Order By: Field(s) to order the results by

Output

The output JSON contains the retrieved report jobs data as returned by the API. Each item in the output corresponds to a report job record with its associated details (such as job id, status, timestamps, etc.). The exact structure depends on the API response schema but generally includes metadata about each report job.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authentication.
  • The node uses a base URL configured in credentials to connect to the external service.
  • The X-USER-ID header must be provided to identify the user context for the request.

Troubleshooting

  • Missing or invalid X USER ID: The request will fail if the required user ID header is not set or invalid. Ensure it is correctly provided.
  • Invalid query parameters: Providing unsupported or malformed query parameters may cause errors or empty results. Validate query strings and numeric values.
  • API connectivity issues: Network problems or incorrect base URL configuration can prevent successful API calls.
  • Permission errors: If the user does not have access rights to view report jobs, the API may return authorization errors.

Links and References

  • Refer to the external API documentation for detailed descriptions of the "Report Jobs" endpoint, supported query parameters, and response schema.
  • n8n documentation on how to configure HTTP headers and query parameters in nodes.

Discussion