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 webhook subscription by providing its unique identifiers. For example, you might use this node to verify that a webhook subscription exists, check its properties, or debug webhook delivery 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, creation date, and other metadata related to the webhook subscription.

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

Dependencies

  • Requires an API key credential or similar authentication token configured in n8n to authorize requests to the external service.
  • 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.
  • Subscription not found: If the subscription ID does not exist under the specified account, the node will return an error or empty response.
  • Network or API errors: Check connectivity and API availability if requests time out or fail unexpectedly.

Links and References

  • Refer to the external service’s official API documentation for webhook subscriptions to understand the full schema and possible fields returned.
  • Consult n8n documentation on how to configure API credentials and handle HTTP request nodes for further customization.

Discussion