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 Procedures" operation for the "Procedures" resource in this custom n8n node allows users to retrieve a list of procedures from an external service (presumably Hudu, as indicated by the node name). This operation is useful for automating workflows that require fetching procedure data, such as synchronizing documentation, generating reports, or integrating with other business processes. For example, you might use this node to pull all procedures related to a specific company, filter procedures by name, or paginate through large sets of procedures.
Properties
| Name | Type | Meaning |
|---|---|---|
| Additional Query Parameters | collection | Optional parameters to refine your search. Each field below can be added as needed: |
| └─ Name | string | Filter by the name of the procedure. |
| └─ Company Id | number | Filter by the associated company ID. |
| └─ Page | number | The current page of results (for pagination). |
| └─ Page Size | number | The number of results to return per page. |
| └─ Slug | string | Filter by the URL slug of the procedure. |
| └─ Global Template | options | Filter for global templates: 'true' for global templates, 'false' for company-specific procedures. |
| └─ Company Template | number | Filter for company-specific templates by providing the company ID. |
| └─ Parent Procedure Id | number | Filter for child procedures of a specific parent procedure. |
Output
- The node outputs a JSON object (or array of objects) representing the procedures retrieved from the external service.
- Each output item typically contains fields relevant to a procedure, such as its ID, name, description, and any other metadata provided by the API.
- No binary data is produced by this operation.
Dependencies
- External Service: Requires access to the Hudu API (or compatible service).
- API Key/Credentials: Needs valid credentials configured in n8n under the name
avantguardHuduApi. - Environment Variable: The base URL for the API must be set in the credentials as
baseUrl.
Troubleshooting
- Invalid Credentials: If the API key or base URL is incorrect, authentication errors will occur. Ensure credentials are correctly configured 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 the "Page" or "Page Size" values are too high or low, you may receive no results or partial data.
- Network Errors: Connectivity issues between n8n and the external API can cause failures; check network settings and API availability.