API Reference
Log In

Charge/Receive with Static QR Code

Charge with Static Qr Code

The Static QR Code contains fixed information that doesn't change with time, maintaining the same data since its creation.

Use Cases

  1. Payments in physical establishments: enterprises can generate static QR codes using Pix and show them in their establishments. Allowing the clients to scan the QR Code directly in their chosen payment app. This speeds up the payment process and eliminates the need to use PoS'.
  2. Donations: Charities and non-profit organizations can make use of the Pix Static QR Code to receive donations quickly and conveniently. People interested in contributing can scan the code and make payments directly from their mobile devices.

Requisistion

POST 'https://apisandbox.delbank.com.br/baas/api/v1/charges'
curl --location 'https://apisandbox.delbank.com.br/baas/api/v1/charges' \
--header 'Content-Type: application/json' \
--header 'x-delbank-api-key: ${apiKey}' \
--data '{
    "type": "PIX_STATIC",
    "correlationId": "2f908499-685c-4e36-af04-30567dc08dc5",
    "description": "pix estático com valor",
    "amount": 9.99,
    "additionalInformation": "Testando qrcode"
}'

Headers

NameDescription
x-delbank-api-keyRequired. API key

Body

NomeTipoDescrição
typeenumRequired. PIX_STATIC
correlationIdstringRequired. Correlation IDs are for conciliation with the client system . This value will be returned to the integration through a webhook and can be used to consult on charges and payments.
descriptionstringInternal charge description
amountnumberCharge value.
If not informed, it means that the payer client can inform what value you wish to pay.
additionalInformationstringInformation that will be show to the payer client . Max length: 64 characters.

Example

The easiet way to generate a Static QR Code is the following:

// example request I
{
  "type": "PIX_STATIC",
  "correlationId": "{{$guid}}",
  "description": "static pix without value"
}

Beyond the information that's written above, it's possible to send a TEXT which will be presented to the payer client . Another important piece of information that is feasible to provide is the amount, and if this is not provided, it indicates that the paying customer can inform the amount they wish to pay (used frequently in donation scenarios).

// example request II
{
    "type": "PIX_STATIC",
    "correlationId": "{{$guid}}",
    "description": "static pix with amount",
    "amount": 9.99,
    "additionalInformation": "Testing QR Code"
}

It's also possible to inform a key

// example request III
{
    "type": "PIX_STATIC",
    "key": "5b0ac9a4-fad6-43f9-be70-6d7c9a2fad26",
    "correlationId": "{{$guid}}",
    "description": "static pix with amount",
    "amount": 9.99,
    "additionalInformation": "testing qrcode"
}

Response

The status code 200 will imply that the transaction has succeeded

Being successful, the return will have the following fields as Json:

NameTypeDescription
typeenumPIX_STATIC
correlationIdstringCorrelation Id.
descriptionstringDescription about the charge
amountnumberCharge Value
additionalInformationstringInformation that will be shown to the payer client
statusenumCharge situation. `PENDING ``
qrCodePayloadstringCopy and Paste QR Code
qrCodeImageBase64stringbase64 Qr Code image
{
    "type": "PIX_STATIC",
    "correlationId": "448fc70d-5344-4306-9111-02a45497aa91",
    "amount": 9.99,
    "description": "pix estático com valor",
    "status": "Pending",
    "updatedAt": "2023-08-21T17:35:26.3175001Z",
    "createdAt": "2023-08-21T17:35:26.3175001Z",
    "qrCodePayload": "00020126770014br.gov.bcb.pix0136730b627f-2649-426a-834e-3acb8b735f490215Testando qrcode52040000530398654049.995802BR5907BXXDBDE6007ARACAJU62290525charge61647J7GYoGWu8ofDEQ630427FB",
    "qrCodeImageBase64": "data:image/png;base64,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",
    "additionalInformation": "testing qrcode"
}