AvantGuard - DNSFilter icon

AvantGuard - DNSFilter

AvantGuard - DNSFilter

Actions277

Overview

This node operation allows users to bulk create multiple network entries in a system by sending a batch of network data in a single request. It is useful when you need to add or register many networks at once, saving time compared to creating them individually. For example, an IT administrator could use this to quickly onboard multiple network configurations into a security or monitoring platform.

Properties

Name Meaning
Additional Query Parameters Optional additional query parameters for the bulk create request. Specifically, it accepts a JSON object under the "Network" key that contains an array of network objects with their attributes such as policy IDs and IP addresses.

The "Additional Query Parameters" property expects a JSON structure like:

{
  "networks": [
    {
      "network": {
        "policy_ids": [null],
        "ip_addresses_attributes": [{}]
      }
    }
  ]
}

This allows specifying detailed network information for each network to be created in bulk.

Output

The node outputs JSON data representing the response from the bulk create API call. This typically includes details about the networks created, any errors encountered per network, and status information. The exact structure depends on the external API's response but generally confirms successful creation or provides error messages for failed entries.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authentication with the external service.
  • The base URL for requests is set to https://api.dnsfilter.com.
  • The node uses standard HTTP headers including Accept: application/json and Content-Type: application/json.
  • No other external dependencies are indicated.

Troubleshooting

  • Invalid JSON in Additional Query Parameters: Ensure the JSON provided is well-formed and matches the expected schema (an array of network objects).
  • Authentication Errors: Verify that the API key credential is correctly configured and has sufficient permissions.
  • Partial Failures: If some networks fail to create, check the error messages returned in the response for specific issues such as invalid policy IDs or malformed IP address attributes.
  • Empty or Null Fields: Avoid sending null values where not allowed; for example, policy IDs should be valid identifiers or omitted if not applicable.

Links and References

Discussion