Zendry API 1.0 icon

Zendry API 1.0

Integração com Zendry (Pix, Payments, Webhooks, Account, Crypto, Checkout)

Overview

This node integrates with the Zendry API to manage Pix receipts, specifically allowing the creation of Pix QR codes. It is useful for generating payment QR codes with customizable parameters such as value, generator details, expiration time, and external references. Practical applications include automating Pix payment requests in e-commerce, billing systems, or financial services.

Use Case Examples

  1. Create a Pix QR code for a payment of 100 cents with an optional generator name and document, setting an expiration time and external reference.
  2. Generate a QR code to be displayed to customers for instant Pix payments.

Properties

Name Meaning
Value (cents) The amount in cents for the Pix QR code payment. Must be at least 1 cent.
Generator Name Optional name of the entity generating the QR code.
Generator Document CPF or CNPJ number (only digits) of the generator. Required if generator name is provided.
Expiration (seconds) Time in seconds before the QR code expires. Minimum is 1 second.
External Reference Optional external reference string for tracking or identification.

Output

JSON

  • value_cents - The value in cents for the created Pix QR code.
  • generator_name - Name of the QR code generator if provided.
  • generator_document - Document number of the generator if provided.
  • expiration_time - Expiration time in seconds for the QR code.
  • external_reference - External reference string if provided.
  • id - Unique identifier of the created QR code.
  • qr_code - The generated Pix QR code data or string.

Dependencies

  • Zendry API with API key credential

Troubleshooting

  • Ensure the 'value_cents' is at least 1; otherwise, the API may reject the request.
  • If 'generator_name' is provided, 'generator_document' must also be provided and be a valid CPF or CNPJ number (digits only).
  • Check API credentials and base URL configuration if authentication errors occur.
  • Handle API errors gracefully; the node throws errors if the request fails unless 'Continue On Fail' is enabled.

Links

Discussion