Calculate Transfer Cost

You can perform transfer cost calculation processes at this step

The parameters that need to be sent to the service are as follows:

Transfer Cost Inquiry Request Parameters

Parameter
Tip
Is Mandatory?
Description

DealerNo

string

It is the dealer number created for the dealer.

Username

string

It is the username created for the dealer.

Password

string

It is the password created for the dealer.

SenderAmount

decimal

It is the amount of transfer

SenderCurrencyId

int

sender customer's currency ID information.

GetterCurreycyId

int

getter customer's currency ID information.

Request example;

{
    "Header": {
        "DealerNo": "dealerno",
        "Username": "username",
        "Password": "password"
    },
    "SenderAmount": 100,
    "SenderCurrencyId": 2,
    "GetterCurrencyId": 2
}

The parameters for the response message sent from the service after the transaction are as follows:

Transfer Cost Inquiry Response Parameters

Parameter
Tip
Is Mandatory?
Description

SenderAmount

decimal

It is the sent amount of money.

GetterAmount

decimal

It is the amount of money to be received.

Cost

decimal

Hizmet bedelidir.

CostCurrencyId

int

It is the service fee.

CostCurrencyCode

string

It is the currency code of the service fee.

If the status information is 0, the transaction has been successfully completed.

Last updated