Cash In
💰 What is Cash In with Static QR Code?
Cash In is a feature that allows you to add money (credit) to your virtual account via PIX. The operation is performed using a Static QR Code, which you can generate directly through the system.
This QR Code can be scanned using any banking app or digital wallet that supports PIX. Once scanned and paid, the amount is automatically credited to the linked virtual account.
🧾 How it works technically (simplified view):
When the system needs to generate a new QR Code for a PIX deposit, it sends a POST operation request to the following API endpoint:
https://api.aurixpay.ws/banking/v1/cashin/pix/qrcode/staticInformation sent in the request body:
amount: value in cents (e.g., 1000 = R$10.00)
bank_account_id: ID of the linked bank account
description: adds a description to the payment
reference: a unique identifier for internal control (e.g., order number)
currency: currency code (usually "BRL" for Brazilian Reais)
options: additional configuration options for payment creation.
show_qrcode_image: Option to display the QR code or not.
skip_webhook: Skip sending the creation webhook.
Example:
{
"amount": 10,
"bank_account_id": "0198c2e7-7b9e-703a-ac98-870740b0cd5a",
"description": "testes",
"reference": "PIX-2025-001234",
"currency": "BRL",
"options": {
"show_qrcode_image": true,
"skip_webhook": false
}
}✅ What the system returns:
If everything goes well, the system responds with:
txid: the unique transaction identifier
qrcode: base64 image of the QR Code (can be rendered for the user to scan)
brcode: the PIX code (can be copied and pasted into a banking app)
reference: a unique identifier for internal control (e.g., order number)
expires_at: expiration date of the QR Code
Example response:
{
"txid": "f13733b4-673b-4411-ba9d-e3029a94d1d6",
"qrcode": "data:image/png;base64,iVBORw0/ACA+z/Wg/8OA...",
"brcode": "00020126860014br.gov.bcb.pix2564pix.ecomovi.com.br/qr/v3/at/f3daf9b4-86fe-4a63-9fc3-59f604818cf95204000053039865802BR5925DGDS_FERNANDES_COMERCIO_L6009SAO_PAULO62070503***6304C732",
"reference": "PIX-2025-001234",
"expires_at": "2025-06-13T06:21:28.000000Z"
}🛠️ What is it used for in the system?
Allows the user to easily and quickly add funds, with no fees.
Ideal for integrations with marketplaces, digital wallets, or financial apps that work with virtual accounts.
Available 24/7, with no need for manual approval.
Last updated