GET api/PixPayment/GetQrCode?pixPaymentId={pixPaymentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pixPaymentId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PixDto| Name | Description | Type | Additional information |
|---|---|---|---|
| qrCodeBase64 | string |
None. |
|
| copyPasteCode | string |
None. |
|
| value | decimal number |
None. |
|
| expirationDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"qrCodeBase64": "sample string 1",
"copyPasteCode": "sample string 2",
"value": 3.0,
"expirationDate": "2025-12-22T05:47:15.2942304-03:00"
}
application/xml, text/xml
Sample:
<PixDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OffDriver.Entities.Dto.Payment"> <copyPasteCode>sample string 2</copyPasteCode> <expirationDate>2025-12-22T05:47:15.2942304-03:00</expirationDate> <qrCodeBase64>sample string 1</qrCodeBase64> <value>3</value> </PixDto>