Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node updates tax rates for a specified account. It is useful in scenarios where you need to modify existing tax rate configurations programmatically, such as adjusting tax percentages or changing tax-related settings in bulk or via automation workflows. For example, an accounting team could automate updating tax rates across multiple accounts after a regulatory change.

Properties

Name Meaning
Account Id Identifier of the account for which the tax rates will be updated.
Body JSON object representing the tax rate details to update, excluding any autogenerated fields.

Output

The node outputs JSON data reflecting the result of the tax rate update operation. This typically includes the updated tax rate object or confirmation of the successful update. The output does not include binary data.

Dependencies

  • Requires an API key credential for authentication with the external service managing tax rates.
  • The base URL for the API must be configured in the node credentials.
  • The node uses HTTP requests with JSON payloads to communicate with the external API.

Troubleshooting

  • Invalid Account Id: If the provided account identifier is incorrect or does not exist, the API may return an error indicating the account was not found. Verify the account ID before running the node.
  • Malformed JSON in Body: The "Body" property expects valid JSON. Errors parsing this input will cause the node to fail. Ensure the JSON syntax is correct and that no autogenerated fields are included.
  • Authentication Errors: Missing or invalid API credentials will prevent the node from successfully updating tax rates. Confirm that the API key or token is correctly set up in n8n credentials.
  • API Endpoint Issues: Network problems or incorrect base URL configuration can cause request failures. Check connectivity and credential settings.

Links and References

  • Refer to the external API documentation for detailed schema of the tax rate object and supported update operations.
  • Consult n8n documentation on how to configure API credentials and use JSON input properties.

Discussion