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 and other resources such as Pix payments, account information, cryptocurrencies, and checkout operations. Specifically, for the 'Webhooks' resource and 'Register' operation, it allows users to register a new webhook by sending a POST request to the Zendry API with the necessary authentication and webhook details. This node is useful for automating webhook management in workflows, enabling real-time event handling from Zendry services.
Use Case Examples
- Register a webhook to receive notifications about Pix payment events.
- Automate webhook registration for different event types in Zendry API.
- Use the node to programmatically manage webhook lifecycle in a payment processing workflow.
Properties
| Name | Meaning |
|---|---|
| Client ID | Client ID of the Zendry application, used for API authentication. |
| Client Secret | Client Secret of the Zendry application, used for API authentication. |
| Endpoint | API endpoint to which the webhook registration request is sent (e.g., /v1/webhooks). |
| HTTP Method | HTTP method used for the request, typically POST for webhook registration. |
| Body (JSON) | JSON-formatted body of the request containing webhook registration details. |
Output
JSON
json- Response from Zendry API containing details of the registered webhook or error information.
Dependencies
- Requires Zendry API credentials: Client ID and Client Secret for authentication.
Troubleshooting
- Ensure Client ID and Client Secret are correctly provided; missing credentials cause authentication errors.
- The 'Body (JSON)' must be valid JSON; invalid JSON will cause request failures.
- If no predefined operation endpoint is found, the 'Endpoint' and 'HTTP Method' must be manually specified.
- API token retrieval errors may occur if Zendry API is unreachable or credentials are invalid.
Links
- Zendry API Documentation - Official documentation for Zendry API endpoints and webhook management.