Actions109
- Activity Logs Actions
- Articles Actions
- 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
- Lists Actions
- Expirations Actions
- Exports Actions
- Folders Actions
- IP Addresses Actions
- Magic Dash Actions
- Matchers Actions
- Networks Actions
- Password Folders Actions
- Users Actions
- Procedure Tasks Actions
- Procedures Actions
- Public Photos Actions
- Rack Storage Items Actions
- Rack Storages Actions
- Relations Actions
- Uploads Actions
- Websites Actions
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-nodepackage 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
- AvantGuard WebhookSite API Documentation (example placeholder link)
- n8n Documentation on Creating Custom Nodes