Create QR Payment

URL

The relevant endpoint and http method information for creating payment with Qr are given below.

HTTP Method URL
POST /v1/Transaction/CreateQRPayment

Request Params

Params Type Mandatory
ext_order_id string Yes
currency_code string Yes
amount decimal Yes
description string No
account_number string Yes
receiver_wallet_number string Yes

Response Params

Params Type
code int
message string
payload object
qr_code string

REQUEST

{
  "ext_order_id": "1231235456",
  "currency_code": "TRY",
  "amount": 1,
  "description": "Qr payment",
  "account_number": "B_im_5",
  "receiver_wallet_number": "1011179271"
}

RESPONSE

{
    "status": 100,
    "code": null,
    "message": null,
    "payload": {
        "qr_code": "24520408992"
    }
}