AvantGuard - DNSFilter icon

AvantGuard - DNSFilter

AvantGuard - DNSFilter

Actions277

Overview

This node operation creates a billing record by sending payment information to an external billing service. It is useful in scenarios where you need to programmatically register a payment for a specific user organization, such as processing subscription payments or recording one-time charges. For example, when a customer completes a purchase on your platform, this node can be used to create the corresponding billing entry using the provided payment token.

Properties

Name Meaning
Organization Id Numeric ID representing the user’s organization for which the billing is created.
Payment Token A string token (e.g., from Stripe) representing the payment method or authorization.

Output

The node outputs JSON data representing the result of the billing creation request. This typically includes details about the newly created billing record such as its ID, status, and any relevant metadata returned by the billing API. The output does not include binary data.

Dependencies

  • Requires an API key credential for authenticating with the external billing service.
  • The node sends HTTP requests to the billing API endpoint configured in the node settings.
  • Proper network access and valid credentials are necessary for successful execution.

Troubleshooting

  • Invalid Organization Id: Ensure the organization ID is correct and exists in the billing system.
  • Invalid or Expired Payment Token: Verify that the payment token is valid and has not expired.
  • Authentication Errors: Check that the API key or authentication token is correctly configured and has sufficient permissions.
  • Network Issues: Confirm that the node can reach the billing API endpoint without firewall or connectivity problems.
  • API Response Errors: Review error messages returned by the billing API for specific issues like insufficient funds or invalid parameters.

Links and References

  • Stripe Payment Tokens
  • Documentation for the external billing API (not included in source code; refer to your billing provider's official docs).

Discussion