Actions100
- Activity Log Actions
- Article Actions
- Asset Actions
- Asset Layout Actions
- Asset Layout Field Actions
- Asset Password Actions
- Card Actions
- Company Actions
- Expiration Actions
- Folder Actions
- IP Address Actions
- List Actions
- Magic Dash Actions
- Matcher Actions
- Network Actions
- Password Folder Actions
- Procedure Actions
- Procedure Task Actions
- Public Photo Actions
- Rack Storage Actions
- Rack Storage Item Actions
Overview
This node interacts with the Hudu REST API to retrieve multiple articles based on specified filters and limits. It is useful for scenarios where you need to fetch a list of articles from Hudu, such as generating reports, syncing article data with other systems, or automating content management workflows.
For example, you can use this node to:
- Retrieve all articles updated in the last 7 days.
- Fetch up to 25 articles that belong to a specific company or folder.
- Search articles by name or URL slug.
- Filter articles by draft status or sharing settings.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all matching articles or limit the number of results. |
| Limit | Maximum number of articles to return if "Return All" is false. Minimum value is 1. Default is 25. |
| Filter Name or ID | A collection of optional filters to narrow down the articles returned: |
| - Company Name or ID | Select or specify the company to which the articles belong. |
| - Draft | Filter articles by their draft status (true or false). |
| - Enable Sharing | Filter articles that are shareable (true or false). |
| - Folder ID 🐌 | Filter articles by a specific folder ID. Note: filtering is applied client-side and may impact performance. |
| - Name | Filter articles by exact article name match. |
| - Search | Fuzzy search query to filter articles by partial matches. |
| - Slug | Filter articles by exact URL slug match. |
| - Updated At | Filter articles based on update time using one of three modes: exact date, date range, or preset ranges (e.g., last 7 days, last month, today). Includes options for start and end dates when using a range. |
Output
The node outputs an array of JSON objects representing the articles retrieved from Hudu. Each object contains the article's data fields as provided by the Hudu API. The output items are paired with the input item index they correspond to.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Hudu REST API.
- Needs an API key credential configured in n8n for authentication.
- The base URL for the Hudu API must be set in the node credentials.
- Optional dynamic loading of companies for filter selection requires appropriate permissions.
Troubleshooting
- Common issues:
- Incorrect or missing API key will cause authentication failures.
- Using client-side filtering on large datasets (e.g., folder ID filter) may lead to slow performance.
- Specifying invalid filter values (e.g., non-existent company ID) may result in empty results.
- Error messages:
"The resource \"articles\" is not known!"indicates a misconfiguration of the resource parameter.- API errors related to rate limits or connectivity will propagate from the Hudu API response.
- Resolutions:
- Verify API key and base URL in credentials.
- Use "Return All" carefully to avoid excessive data fetching.
- Double-check filter values and ensure referenced entities exist in Hudu.