AvantGuard - WebhookSite icon

AvantGuard - WebhookSite

AvantGuard - WebhookSite

Actions100

Overview

The "Get Password Folders" operation retrieves a list of password folders from an external service. This node is useful when you want to fetch and manage collections of password folders, for example, to display them in a dashboard, synchronize with another system, or perform further automation based on folder metadata.

Typical use cases include:

  • Filtering password folders by name or company ID.
  • Searching folders using a query string.
  • Paginating through large sets of folders by specifying page number and size.

Properties

Name Meaning
Additional Query Parameters Optional filters and pagination controls:
- Name: Filter folders by their exact name (string).
- Company Id: Filter folders belonging to a specific company (number).
- Search: Search folders by a query string (string).
- Page: Specify which page of results to retrieve (number).
- Page Size: Number of results to return per page (number).

These parameters are sent as query parameters to the API endpoint to refine the results returned.

Output

The node outputs JSON data representing the retrieved password folders. The structure typically includes an array of folder objects, each containing details such as folder name, ID, associated company, and other metadata depending on the API response.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential or similar authentication token configured in n8n to access the external password management service.
  • The base URL for the API must be set in the node credentials.
  • The node depends on the external service's API to support filtering and pagination via query parameters.

Troubleshooting

  • Empty Results: If no folders are returned, verify that the filter parameters (name, company ID, search) are correct and that the account has folders matching those criteria.
  • Authentication Errors: Ensure the API key or authentication token is valid and has sufficient permissions.
  • Pagination Issues: If requesting pages beyond the available range, the API may return empty results; adjust the page and page_size accordingly.
  • Invalid Parameter Types: Make sure numeric fields like company_id, page, and page_size are numbers, not strings.

Links and References

  • Refer to the external password management service API documentation for detailed information on the password folders endpoint, supported query parameters, and response schema.
  • Consult n8n documentation on how to configure API credentials and use query parameters in nodes.

Discussion