AvantGuard - CIPP icon

AvantGuard - CIPP

AvantGuard - CIPP

Actions136

Overview

This node integrates with the AvantGuard CIPP API to perform operations related to lists. Specifically, the "Retrieve Exec Bec Check" operation under the "List" resource allows users to query execution-based checks by providing specific identifiers such as Guid, Tenantfilter, Userid, and Username. This is useful in scenarios where you need to fetch detailed execution check data for auditing, compliance, or monitoring purposes within an enterprise environment.

Practical examples include:

  • Retrieving execution check details for a particular user session.
  • Filtering execution checks based on tenant-specific criteria.
  • Auditing execution events identified by unique GUIDs.

Properties

Name Meaning
Guid A unique identifier (GUID) used to specify the exact execution check record to retrieve.
Tenantfilter A string filter to specify the tenant context for the execution check retrieval.
Userid The user ID associated with the execution check to be retrieved.
Username The username corresponding to the user ID for the execution check retrieval.

All these properties are required and are sent as query parameters in the API request.

Output

The node outputs JSON data representing the execution check details retrieved from the AvantGuard CIPP API. The structure of the JSON output corresponds to the response schema defined by the API, typically including fields related to the execution check status, timestamps, user information, and any relevant metadata.

There is no indication that this node outputs binary data.

Dependencies

  • Requires an API key credential for authenticating with the AvantGuard CIPP API.
  • The base URL for the API is configured via credentials and appended with /api.
  • Uses the @avantguardllc/n8n-openapi-node package and an OpenAPI specification (openapi.json) bundled with the node for request building and validation.

Troubleshooting

  • Missing or invalid credentials: Ensure that the API key credential is correctly configured and has access to the AvantGuard CIPP API.
  • Invalid or missing required properties: All four properties (Guid, Tenantfilter, Userid, Username) are mandatory. Omitting any will likely cause the API call to fail.
  • Network or API errors: Verify network connectivity and that the API endpoint URL is correct in the credentials.
  • Unexpected API responses: Confirm that the provided property values correspond to existing records in the AvantGuard system.

Links and References

Discussion