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 update operation for webhooks. It allows users to update webhook configurations by specifying the client credentials, the API endpoint, HTTP method, and the request body in JSON format. This node is useful for automating webhook management tasks such as modifying webhook URLs or event subscriptions in the Zendry platform.
Use Case Examples
- Updating a webhook URL to a new endpoint to receive event notifications.
- Changing the subscribed events of an existing webhook to tailor the notifications received.
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 for the webhook update operation (e.g., /v1/webhooks). |
| HTTP Method | HTTP method to use for the request, typically PUT for update operations. |
| Body (JSON) | Request body in JSON format containing the webhook update details. |
Output
JSON
json- Response from the Zendry API after updating the webhook, containing details of the updated webhook or error information.
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.
- The request body must be valid JSON; invalid JSON will cause a parsing error.
- If the endpoint is not predefined for the operation, the Endpoint parameter must be provided; otherwise, the node will throw an error.
- API errors from Zendry (e.g., invalid webhook ID, unauthorized access) will be returned in the node output; check the error message for details.
Links
- Zendry API Webhooks Documentation - Official documentation for managing webhooks via Zendry API.