The relevant endpoint and http method information for creating money transfer between personals with Qr are given below.
HTTP Method | URL |
---|---|
POST | /v1/Transaction/CreateQRPersonalToPersonalTransfer |
Params | Type | Mandatory |
---|---|---|
ext_transaction_id | string | Yes |
currency_code | string | Yes |
amount | decimal | Yes |
account_number | string | Yes |
description | string | No |
receiver_wallet_number | string | Yes |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | object |
qr_code | string |
REQUEST
{
"ext_transaction_id": "1231235456",
"currency_code": "TRY",
"amount": 1,
"account_number": "ENS123",
"description": "P2P QR Test",
"receiver_wallet_number": "1011179271"
}
RESPONSE
{
"status": 100,
"code": null,
"message": null,
"payload": {
"qr_code": "24520408992"
}
}