Actions109
- Asset Layouts Actions
- Asset Passwords Actions
- Assets Actions
- Get Assets
- Get Companies Company Id Assets
- Post Companies Company Id Assets
- Get Companies Company Id Assets Id
- Put Companies Company Id Assets Id
- Delete Companies Company Id Assets Id
- Put Companies Company Id Assets Id Archive
- Put Companies Company Id Assets Id Unarchive
- Put Companies Company Id Assets Id Move Layout
- Cards Actions
- Companies Actions
- Expirations Actions
- Exports Actions
- Folders Actions
- IP Addresses Actions
- Lists Actions
- Magic Dash Actions
- Matchers Actions
- Networks Actions
- Password Folders Actions
- Procedure Tasks Actions
- Websites Actions
- Procedures Actions
- Public Photos Actions
- Rack Storage Items Actions
- Rack Storages Actions
- Relations Actions
- Uploads Actions
- Users Actions
- Activity Logs Actions
- Articles Actions
Overview
The Get Password Folders operation for the Password Folders resource retrieves a list of password folders from the AvantGuard Hudu system. This node is useful in scenarios where you need to fetch, filter, or paginate through password folder records—such as synchronizing folder structures, auditing access, or integrating with other systems that require knowledge of your password folder organization.
Practical examples:
- Listing all password folders for reporting or inventory purposes.
- Filtering folders by name or company ID to find specific organizational units.
- Paginating through large sets of folders for batch processing.
Properties
| Name | Type | Meaning |
|---|---|---|
| Additional Query Parameters | collection | Optional set of filters and pagination controls. Contains the following options: |
| └─ Name | string | Filter folders by their name. |
| └─ Company Id | number | Filter folders by a specific company ID. |
| └─ Search | string | Filter folders using a search query (e.g., partial matches). |
| └─ Page | number | The page number of results to retrieve (for pagination). |
| └─ Page Size | number | The number of results to return per page (for pagination). |
Output
The node outputs a JSON array of password folder objects. Each object typically contains details about a password folder, such as its ID, name, associated company, and possibly other metadata. The exact structure depends on the Hudu API but generally includes:
[
{
"id": 123,
"name": "Finance",
"company_id": 456,
// ...other folder properties
},
...
]
- No binary data is output by this operation.
Dependencies
- External Service: Requires access to the AvantGuard Hudu API.
- API Key/Credentials: Needs valid
avantguardHuduApicredentials configured in n8n, including the base URL (baseUrl) for the Hudu instance. - n8n Configuration: Ensure the custom node and its dependencies are installed and properly configured.
Troubleshooting
Common Issues:
- Invalid Credentials: If the API key or base URL is incorrect, authentication errors will occur. Double-check credential settings in n8n.
- Missing Required Fields: If required query parameters are omitted or incorrectly formatted, the API may return errors or empty results.
- Pagination Issues: If
PageorPage Sizevalues are out of range, you may receive no results or an error message.
Common Error Messages:
"401 Unauthorized": Check your API credentials and permissions."404 Not Found": The endpoint or resource does not exist; verify the base URL and resource path."400 Bad Request": One or more query parameters are invalid; review input property values.