Actions277
- User Agents Actions
- Url Filters Actions
- Users Actions
- Traffic Reports Actions
- Traffic Reports Qps Active Agents
- Traffic Reports Qps Active Users
- Traffic Reports Qps Active Collections
- Traffic Reports Top Domains
- Traffic Reports Top Categories
- Traffic Reports Top Application Categories
- Traffic Reports Top Organizations
- Traffic Reports Top Networks
- Traffic Reports Top Agents
- Traffic Reports Top Users
- Traffic Reports Top Collections
- Traffic Reports Query Logs
- Traffic Reports Total Organizations Stats
- Traffic Reports Total Domain Stats
- Traffic Reports Total Category Stats
- Traffic Reports Total Organizations Requests
- Traffic Reports Total Domain Requests
- Traffic Reports Top Organizations Requests
- Traffic Reports Total Client Stats
- Traffic Reports Total Deployments
- Traffic Reports Total Roaming Clients
- Traffic Reports Total Applications Stats
- Traffic Reports Total Applications Organizations Stats
- Traffic Reports Total Applications Networks Stats
- Traffic Reports Total Applications Agents Stats
- Traffic Reports Total Applications Users Stats
- Traffic Reports Total Applications Collections Stats
- Traffic Reports Total Requests
- Traffic Reports Total Requests Geo
- Traffic Reports Total Requests Organizations
- Traffic Reports Total Requests Agents
- Traffic Reports Total Requests Users
- Traffic Reports Total Requests Collections
- Traffic Reports Total Threats
- Traffic Reports Total Threats Organizations
- Traffic Reports Total Threats Agents
- Traffic Reports Total Threats Users
- Traffic Reports Total Threats Collections
- Traffic Reports Total Categories
- Traffic Reports Total Categories Organizations
- Traffic Reports Total Categories Agents
- Traffic Reports Total Categories Users
- Traffic Reports Total Categories Collections
- Traffic Reports Total Domains
- Traffic Reports Total Domains Organizations
- Traffic Reports Total Domains Users
- Traffic Reports Total Domains Collections
- Traffic Reports Total Collections
- Traffic Reports Total Collections Organizations
- Traffic Reports Total Collections Agents
- Traffic Reports Total Collections Users
- Traffic Reports Qps
- Traffic Reports Qps Active Organizations
- Trials Actions
- User Agent Bulk Deletes Actions
- User Agent Bulk Updates Actions
- User Agent Cleanups Actions
- User Agent Csv Exports Actions
- Policies Actions
- Policies Add Blacklist Category
- Policies Remove Blacklist Category
- Policies Add Allowed Application
- Policies Remove Allowed Application
- Policies Add Blocked Application
- Policies Remove Blocked Application
- Policies Get Permissive Mode
- Policies Index
- Policies Create
- Policies All
- Policies Show
- Policies Update
- Policies Destroy
- Policies Application
- Policies Application Update
- Policies Add Blacklist Domain
- Policies Remove Blacklist Domain
- Policies Add Whitelist Domain
- Policies Remove Whitelist Domain
- Policies Bulk Actions Actions
- Policy Ips Actions
- Scheduled Policies Actions
- Scheduled Report Previews Actions
- Scheduled Reports Actions
- Networks Actions
- Networks Lookup
- Networks Show
- Networks Update
- Networks Destroy
- Networks Bulk Create
- Networks Bulk Create Status
- Networks Index
- Networks Create
- Networks All
- Networks Msp
- Networks Msp All
- Networks Bulk Update
- Networks Bulk Update Status
- Networks Bulk Destroy
- Networks Bulk Destroy Status
- Networks Generate Secret Key
- Networks Revoke Secret Key
- Networks Rotate Secret Key
- Mac Addresses Actions
- Metrics Actions
- Network Lan Ips Actions
- Network Subnets Actions
- Organizations Actions
- Organization Users Actions
- Distributors Actions
- Distributors Msps Cancel
- Distributors Msps Reactivate
- Distributors Organizations Index
- Distributors Organizations Create
- Distributors Organizations Show
- Distributors Organizations Update
- Distributors Organizations Cancel
- Distributors Organizations Reactivate
- Distributors Organizations Add Sku
- Distributors Organizations Remove Sku
- Distributors Users Index
- Distributors Users Create
- Distributors Users Show
- Distributors Users Add Membership
- Distributors Users Update Membership
- Distributors Users Remove Membership
- Distributors Users Send Reset Password Email
- Distributors Users Reset Password Url
- Distributors Reports Usage By Organization
- Distributors Reports Usage By Sku
- Distributors Reports Covered Users Summary By Organization
- Distributors Distributors Update
- Distributors Msps Index
- Distributors Msps Create
- Distributors Msps Show
- Distributors Msps Update
- Domain Notes Actions
- Domains Actions
- Enterprise Connections Actions
- Invoices Actions
- IP Addresses Actions
- Allowed Urls Actions
- Api Key Actions
- Application Categories Actions
- Applications Actions
- Authentication Actions
- Authentication Sync Tool Actions
- Billings Actions
- Blocked Urls Actions
- Block Pages Actions
- Categories Actions
- Collection Users Actions
- Agent Local User Actions
- Agent Local User Bulk Deletes Actions
Overview
This node allows batch updating of domain notes in the "Domain Notes" resource. It is designed to update or append notes associated with multiple domains simultaneously, which is useful for managing large sets of domain-related metadata efficiently. Typical use cases include maintaining lists of domains with specific annotations, such as security notes, categorization tags, or operational comments.
For example, a user can provide an array of domains each paired with a note explaining its context or status, and update all these entries in one API call. This is beneficial when handling bulk updates to domain information without needing to process each domain individually.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the resource to update. |
| Notes | An array containing objects with domain and note fields, e.g., [ { domain: 'google.com', note: '...' } ]. This specifies the domains and their corresponding notes to be updated or appended. |
| Additional Query Parameters | Optional parameters that modify the batch update behavior: |
| - Append | Boolean flag indicating whether to append notes (true) or overwrite existing notes (false). Defaults to true. |
| - Organization Ids | JSON array of organization IDs to which the update applies. Defaults to the user's organization ID if not specified. |
| - Single Note | A single note string applied to all provided domains, overriding individual notes if set. |
| - Type | Specifies the type of list: either allow (default) or block, indicating the nature of the domain list. |
Output
The node outputs JSON data representing the result of the batch update operation. This typically includes confirmation of the updated domains and notes, any errors encountered per domain, and overall status of the request. The exact structure depends on the API response but generally reflects success or failure details for each domain processed.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authentication with the external DNS filtering service.
- The node communicates with the DNSFilter API endpoint at
https://api.dnsfilter.com. - Proper configuration of the API key credential within n8n is necessary for successful requests.
Troubleshooting
Common Issues:
- Invalid or missing API credentials will cause authentication failures.
- Malformed JSON in the
Notesproperty may lead to request errors. - Providing invalid domain names or unsupported types in the
Typefield could result in API rejections. - Omitting required properties like
IdorNoteswill prevent execution.
Error Messages:
- Authentication errors usually indicate incorrect or expired API keys; verify and update credentials.
- Validation errors from the API often point to incorrect formatting of the
Notesarray or query parameters; ensure JSON syntax and parameter values are correct. - Network or timeout errors suggest connectivity issues; check network access and API availability.
Links and References
- DNSFilter API Documentation (for detailed API usage and parameter descriptions)
- n8n documentation on Creating Custom Nodes