Actions18
- Receipts (Pix) Actions
- Payments (Pix Out) Actions
- Webhooks Actions
- Crypto Actions
- Account Actions
- Checkout Actions
Overview
This node integrates with the Zendry API to manage webhooks, specifically supporting the operation to list available webhook types. It authenticates using a Client ID and Client Secret to obtain an access token, then makes a GET request to the Zendry API endpoint for webhook types. This node is useful for users who want to retrieve and display the types of webhooks they can register or manage within the Zendry platform, facilitating automation and integration workflows involving webhook events.
Use Case Examples
- A user wants to automate the process of managing webhook subscriptions by first retrieving the list of available webhook types from Zendry to present options in a UI or to decide which webhooks to register.
- A developer integrates this node in an n8n workflow to dynamically fetch webhook types before registering or updating webhooks based on the available types.
Properties
| Name | Meaning |
|---|---|
| Client ID | Client ID of the Zendry application, used for authentication. |
| Client Secret | Client Secret of the Zendry application, used for authentication. |
| Endpoint | API endpoint to call, required if no predefined operation is selected. |
| HTTP Method | HTTP method to use for the API request, defaults to GET if not specified. |
| Body (JSON) | Request body in JSON format, used for non-GET requests. |
Output
JSON
json- The JSON response from the Zendry API containing the list of webhook types.
Dependencies
- Requires Zendry API credentials: Client ID and Client Secret for authentication.
Troubleshooting
- Ensure that Client ID and Client Secret are correctly provided; missing credentials will cause authentication errors.
- Verify that the API endpoint is correct if using a custom endpoint; an invalid endpoint will result in request failures.
- For non-GET requests, ensure the Body JSON is valid; invalid JSON will cause parsing errors.
- If the token retrieval fails, check network connectivity and credential validity.
Links
- Zendry API Documentation - Official documentation for Zendry API endpoints and authentication.