Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node operation, Get Webhook Subscriptions, retrieves the list of webhook subscriptions associated with a specified account. It is useful for scenarios where you need to programmatically access and manage webhook subscriptions tied to an account, such as monitoring active webhooks, auditing integrations, or synchronizing webhook configurations.

For example, if you have multiple webhook endpoints registered for an account and want to fetch their details to display in a dashboard or verify their status, this operation provides that capability.

Properties

Name Meaning
Account Id Identifier of the account whose webhook subscriptions you want to retrieve

Output

The output JSON contains the data representing the webhook subscriptions for the given account. Typically, this will be an array or object detailing each webhook subscription's properties such as URL, event types subscribed to, status, and other metadata.

No binary data output is expected from this operation.

Dependencies

  • Requires an API key credential or authentication token configured in n8n to authorize requests to the external service managing webhook subscriptions.
  • The node uses a base URL provided by credentials to connect to the API endpoint.
  • No additional external dependencies are indicated beyond standard HTTP request capabilities.

Troubleshooting

  • Missing or invalid Account Id: Ensure the "Account Id" property is correctly set and corresponds to a valid account in the external system.
  • Authentication errors: Verify that the API key or authentication token is properly configured and has sufficient permissions to read webhook subscriptions.
  • Network or API errors: Check connectivity to the API endpoint and confirm the base URL is correct.
  • Empty results: If no webhook subscriptions are returned, confirm that the account actually has active webhook subscriptions.

Links and References

  • Refer to the external API documentation for webhook subscription management for detailed schema and examples.
  • Consult n8n documentation on setting up API credentials and using HTTP request nodes for similar integrations.

Discussion