Transfer To Virement

URL

The endpoint and http method information used to transfer money between wallets connected to the same account are given below.

HTTP Method URL
POST /v1/Transaction/TransferToVirement

Request Params

Params Type Mandatory
sender_account_number string Yes
sender_wallet_number string Yes
amount decimal Yes
currency_code string Yes
description string No
receiver_wallet_number string Yes
hash_key string No
ext_transaction_id string Yes

Response Params

Params Type
status int
code string
message string
payload object
transaction_id string
transaction_amount decimal
receiver_first_name string
receiver_last_name string
receiver_account_number string
receiver_wallet_number string
sender_wallet_info object
id string
name string
account_number string
account_type string
created_date_utc string
number string
phone_country_code string
phone_number string
email string
total_balance decimal
monthly_incoming_total decimal
monthly_outgoing_total decimal
access_level_status_id int
access_level_status string
payment_balance object
available decimal
unavailable decimal
cash_balance object
available decimal
unavailable decimal
transaction_limits object
max_balance decimal
topup_credit_limit decimal
topup_cash_limit decimal
withdrawal_limit decimal
payment_limit decimal
wallet_to_wallet_limit decimal
kyc_level_status string
currency_code string
user_kyc_info string
is_topup_default boolean
tax_number string
loyalty_record_required boolean

REQUEST:

{ 
  "sender_account_number": "BARISYKT",
  "sender_wallet_number": "578678562786875",
  "amount": 5,
  "currency_code": "TRY",
  "description": "",
  "receiver_wallet_number": "5782782452454",
  "hash_key": "",
  "ext_transaction_id": "5436543453"
  }

SUCCESSFUL RESPONSE:

{
    "status": 0,
    "code": "100",
    "message": "İşlem başarılı",
    "payload": {
        "transaction_id": "2501010966820023309",
        "transaction_amount": 5.0,
        "receiver_first_name": "",
        "receiver_last_name": "",
        "receiver_account_number": "BARISYKT",
        "receiver_wallet_number": "5782782452454",
        "sender_wallet_info": {
            "id": "1095613091072830477",
            "name": "",
            "account_number": "BARISYKT",
            "account_type": "Personal",
            "created_date_utc": "2022-08-08T07:58:18.8142755+00:00",
            "number": "TR79528191508259464C94Q9TX",
            "phone_country_code": null,
            "phone_number": null,
            "email": null,
            "total_balance": 218.98,
            "monthly_incoming_total": 0.0,
            "monthly_outgoing_total": 0.0,
            "access_level_status_id": 1,
            "access_level_status": "Aktif",
            "payment_balance": {
                "available": 0.00,
                "unavailable": 0.00
            },
            "cash_balance": {
                "available": 218.58,
                "unavailable": 0.40
            },
            "transaction_limits": {
                "max_balance": 200000.0000,
                "topup_credit_limit": 199913.0000,
                "topup_cash_limit": 199913.0000,
                "withdrawal_limit": 200000.0000,
                "payment_limit": 199819.9800,
                "wallet_to_wallet_limit": 199826.9900
            },
            "kyc_level_status": null,
            "currency_code": "TRY",
            "user_kyc_info": null,
            "is_topup_default": false,
            "tax_number": null,
            "loyalty_record_required": false
        }
    }
}

Fail Response:

{
    "status": 2,
    "code": "303",
    "message": "Gönderici cüzdan ile alıcı cüzdan aynı hesaba tanımlı olmalıdır",
    "payload": null
}