AvantGuard - Hudu icon

AvantGuard - Hudu

AvantGuard - Hudu

Actions109

Overview

This node allows you to update an existing Matcher by its ID in the AvantGuard Hudu system. It is useful when you need to modify details of a Matcher, such as changing associated company IDs or updating identifiers. Common scenarios include synchronizing Matcher data with external systems, correcting information, or automating updates as part of a workflow.

Example use cases:

  • Automatically update a Matcher’s company association when a related record changes.
  • Batch-update Matchers with new identifiers during a migration process.
  • Integrate with other n8n nodes to keep Matcher data consistent across platforms.

Properties

Name Type Meaning
Id Number The ID of the Matcher to update. This uniquely identifies which Matcher will be modified.
Additional Body Fields Collection Optional fields to update on the Matcher. Includes:
- Company Id Number The updated company ID for the Matcher.
- Potential Company Id Number The updated potential company ID for the Matcher.
- Sync Id String The updated sync ID for the Matcher.
- Identifier String The updated identifier for the Matcher.

Output

The node returns the JSON response from the AvantGuard Hudu API after updating the Matcher. The structure typically includes the updated Matcher object, reflecting all changes made. The exact fields depend on the API's response but generally mirror the properties of a Matcher (such as id, company_id, potential_company_id, sync_id, identifier, etc.).

Example output:

{
  "id": 123,
  "company_id": 456,
  "potential_company_id": 789,
  "sync_id": "abc-123",
  "identifier": "matcher-001",
  // ...other Matcher fields
}

Dependencies

  • External Service: Requires access to the AvantGuard Hudu API.
  • API Credentials: You must configure the avantguardHuduApi credential in n8n, including the base URL and authentication details.
  • n8n Configuration: Ensure that the credentials are set up and the node has network access to the Hudu API endpoint.

Troubleshooting

  • Invalid or Missing ID: If the provided Matcher ID does not exist, the API may return a "not found" error. Double-check the ID value.
  • Authentication Errors: If credentials are missing or incorrect, you may see errors like "401 Unauthorized." Verify your API key and base URL.
  • Validation Errors: If required fields are missing or have invalid values, the API may return descriptive error messages. Review the input property values.
  • Network Issues: Timeouts or connection errors can occur if the API is unreachable. Ensure network connectivity and correct base URL configuration.

Links and References

Discussion