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 perform various operations related to cryptocurrencies, Pix payments, webhooks, account information, and unified checkout. Specifically, for the Crypto resource and Crypto Quotation operation, it fetches the current USDT cryptocurrency quotation from the Zendry API. This node is useful for applications needing real-time cryptocurrency price data, such as financial dashboards, trading bots, or payment systems that accept USDT.
Use Case Examples
- Fetch the current USDT quotation to display on a cryptocurrency price dashboard.
- Use the quotation data to calculate equivalent fiat currency amounts 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 call. For predefined operations like Crypto Quotation, this is automatically set. Otherwise, a custom endpoint can be specified. |
| HTTP Method | HTTP method to use for the API request. Defaults to GET for Crypto Quotation. |
| Body (JSON) | Request body in JSON format, used for non-GET requests to send data to the API. |
Output
JSON
json- The JSON response from the Zendry API containing the requested data, such as the USDT quotation.
Dependencies
- Zendry API with client ID and client secret credentials for authentication.
Troubleshooting
- Ensure that Client ID and Client Secret are correctly provided; missing credentials will cause authentication errors.
- The node throws an error if the API token cannot be obtained; verify network connectivity and credential validity.
- If the request body is not valid JSON for non-GET methods, the node will throw a JSON parsing error; ensure the body is correctly formatted.
- When no predefined operation is selected, the Endpoint and HTTP Method must be specified manually; missing these will cause errors.
Links
- Zendry API Documentation - Official documentation for the Zendry API endpoints and usage.