Actions99
- Group Accounts Actions
- Group Account Codes Actions
- Accounts Actions
- Expenses Actions
- Purchase Orders Actions
- Get A List Of Purchase Orders
- Create A New Purchase Order
- Get A Purchase Order
- Update A Purchase Order
- Open A Purchase Order
- Get A List Of Purchase Orders Items For A Specific Purchase Order
- Create A Purchase Order Item
- Get A Purchase Order Item
- Update A Purchase Order Item
- Delete A Purchase Order Item
- Get A List Of Goods Received Notes For A Specific Purchase Order
- Create A Goods Received Note
- Attach A File To A Goods Received Note
- Delete A Goods Received Note
- Suppliers Actions
- Fund Accounts Actions
- Cards Actions
- Expense Categories Actions
- Tax Rates Actions
- Amortizations Actions
- Account Teams Actions
- Account Codes Actions
- External Teams Actions
- Custom Fields Actions
- Get Custom Fields
- Create A New Custom Field
- Get Custom Field
- Update Custom Field
- Delete A Custom Field And All Its Values
- Get Custom Field Values
- Create A Custom Field Value
- Delete Custom Field Values
- Get A Custom Field Value
- Update A Custom Field Value
- Delete A Custom Field Value
- Get Managers For A Specific Custom Field Value
- Adds Managers For A Specific Custom Field Value
- Replaces Managers For A Specific Custom Field Value
- Removes Managers For A Specific Custom Field Value
- Webhook Subscriptions Actions
- Group Teams Actions
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.