Actions20
- Receipts (Pix) Actions
- Payments (Pix Out) Actions
- Webhooks Actions
- Crypto Actions
- Checkout Actions
- Account Actions
Overview
This node integrates with the Zendry API to manage webhooks, specifically allowing users to register or update webhook URLs for different webhook types. It is useful for automating webhook management in workflows, such as setting up notification endpoints for events in the Zendry system. For example, a user can register a new webhook URL to receive event notifications or update an existing webhook's URL and authorization header.
Use Case Examples
- Register a new webhook URL for a specific webhook type to receive event notifications.
- Update the authorization header for an existing webhook to secure webhook calls.
Properties
| Name | Meaning |
|---|---|
| Webhook Type ID | The identifier of the webhook type to register or update. It must be a number greater than or equal to 1. |
| URL (https) | The HTTPS URL where the webhook notifications will be sent. This is a required field when registering a webhook. |
| Authorization (Header Value) | Optional authorization header value to include in webhook requests for securing the webhook endpoint. |
Output
JSON
json- The JSON response from the Zendry API after registering or updating the webhook, containing details about the webhook registration status or updated webhook information.
Dependencies
- Zendry API with authentication credentials
Troubleshooting
- Ensure the 'Webhook Type ID' is a valid number and corresponds to an existing webhook type in Zendry.
- The 'URL (https)' must be a valid HTTPS URL; non-HTTPS URLs will likely cause errors.
- If authorization is required by the webhook endpoint, provide the correct 'Authorization (Header Value)' to avoid unauthorized errors.
- API errors from Zendry will be thrown as node errors; check the error message for details such as invalid credentials or malformed requests.
Links
- Zendry API Webhooks Documentation - Official documentation for managing webhooks via the Zendry API.
