AvantGuard - WebhookSite icon

AvantGuard - WebhookSite

AvantGuard - WebhookSite

Actions109

Overview

This node operation updates an existing website's details by its ID. It is useful for scenarios where you need to modify website information such as the associated company, name, notes, or monitoring settings (e.g., pausing monitoring or disabling specific checks like DNS, SSL, or WHOIS). For example, if a website changes ownership or requires temporary suspension of monitoring, this operation allows updating those attributes programmatically.

Properties

Name Meaning
Id The unique identifier of the website to update.
Additional Body Fields Optional fields to update on the website:
- Company Id Numeric ID to associate the website with a specific company.
- Name The name or URL of the website.
- Notes Additional notes or comments about the website.
- Paused Boolean flag to pause or resume website monitoring.
- Disable Dns Boolean flag to pause or resume DNS monitoring.
- Disable Ssl Boolean flag to pause or resume SSL certificate monitoring.
- Disable Whois Boolean flag to pause or resume WHOIS monitoring.

Output

The output JSON contains the updated website data reflecting the changes made. This typically includes all website properties such as ID, name, company association, notes, and monitoring status flags. There is no indication that binary data is returned by this operation.

Dependencies

  • Requires an API key credential for authentication with the AvantGuard WebhookSite service.
  • The node uses a base URL configured in the credentials to send HTTP requests.
  • The node depends on the @avantguardllc/n8n-openapi-node package and an OpenAPI specification (openapi.json) for request building.

Troubleshooting

  • Invalid ID error: If the provided website ID does not exist, the API will likely return an error indicating the resource was not found. Verify the ID before running the node.
  • Authentication errors: Ensure the API key credential is correctly configured and has sufficient permissions.
  • Validation errors: When providing additional body fields, ensure data types match expected formats (e.g., numbers for IDs, booleans for flags).
  • Network issues: Check connectivity to the configured base URL and that the endpoint is reachable.

Links and References

Discussion