The relevant endpoint and http method information for the generated qr code are given below.
| HTTP Method | URL |
|---|---|
| POST | /v1/Transaction/ReadQRPayment |
| Params | Type | Mandatory |
|---|---|---|
| qr_code | string | Yes |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| receiver_name | string |
| description | string |
| amount | decimal |
| qr_code | string |
| currency_code | string |
| expire_date | string |
REQUEST
{
"qr_code": "55203798999"
}
RESPONSE
{
"status": 0,
"code": null,
"message": null,
"payload": {
"receiver_name": "B_im_5_update",
"description": "Qr payment",
"amount": 1.1,
"qr_code": "55203798999",
"currency_code": "TRY",
"expire_date": "2022-01-10T14:31:49.6376785+00:00"
}
}