Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node operation retrieves details of a specific webhook subscription from an external service. It is useful when you need to fetch the current configuration or status of a particular webhook subscription by providing its unique identifiers. For example, you might use this node to verify if a webhook subscription exists, check its properties, or debug webhook-related issues.

Properties

Name Meaning
Account Id Identifier of the account associated with the webhook subscription. This is required to specify the scope of the subscription.
Subscription Id Identifier of the specific webhook subscription to retrieve. This uniquely identifies the subscription within the account.

Output

The output will contain a JSON object representing the webhook subscription details as returned by the external API. This typically includes information such as subscription status, event types subscribed to, endpoint URL, and other metadata related to the webhook subscription.

If the node supports binary data output (not indicated here), it would represent any binary payloads associated with the subscription, but in this case, the output is purely JSON.

Dependencies

  • Requires an API key credential or similar authentication token configured in n8n to access the external service's API.
  • The node depends on the external service's API endpoint for webhook subscriptions.
  • Proper base URL and headers are set via credentials and node configuration.

Troubleshooting

  • Missing or invalid Account Id or Subscription Id: Ensure both identifiers are provided and correct; otherwise, the API call will fail.
  • Authentication errors: Verify that the API key or authentication token is valid and has permissions to access webhook subscriptions.
  • Network or API errors: Check connectivity and API availability. Rate limits or service outages may cause failures.
  • Unexpected response structure: If the external API changes, the node output may differ; review API documentation for updates.

Links and References

  • Refer to the external service’s official API documentation for webhook subscriptions to understand the full schema and capabilities.
  • n8n documentation on how to configure API credentials and use HTTP request nodes for custom integrations.

Discussion