Invalidate a PIX QRCode
Introduction
- Only dynamic QR Codes that have not been paid or expired can be canceled, and once a QR Code is canceled, it cannot be reactivated for payment.
How to Cancel a PIX QRCode
Cancelling a dynamic PIX QR Code is straightforward with our Invalidate Dynamic QR Code API endpoint. Use the following cURL command to cancel a QR Code:
curl --request POST \
--url https://faas.sandbox.tracefinance.io/pix/api/qrCodes/{qrCodeId}/invalidate \
--header 'accept: application/json' \
--header 'authorization: Bearer {accessToken}'
Parameters:
{qrCodeId}
: The ID of the PIX QR Code you wish to cancel.
Resulting Status:
- On successful cancelation, the
status
of the PIX QR Code changes toINVALIDATED
, indicating it's no longer valid for receiving payments.
Webhooks
To keep you informed about the cancelation process, a webhook event QR_CODE_INVALIDATED is sent out once the operation is processed.
Updated 2 months ago