Balance Inquiry
You can perform balance inquiry transactions in this step. The parameters that need to be sent to the service are as follows: Limit Inquiry Request Message Parameters
DealerNo
string
It is the dealer number.
Username
string
It is the username created for the dealer.
Password
string
It is the password created for the dealer.
CurrencyId
int
It is the currency ID.
An example JSON object to be sent to the service is as follows:
{
"Header": {
"DealerNo": "dealerno",
"Username": "username",
"Password": "password"
}
"CurrencyId": 1
}The parameters for the response message sent from the service after the transaction are shared below:
Balance Inquiry Response Parameters
Balance
decimal
It is the current balance of the dealer.
Status
int
It is the status information of the inquiry result.
Customer_Explanation
string
If there is an error in the inquiry process, it is the description information to be shown to the customer.
LOG_Explanation
string
It is the error code and error detail information in case of inquiry errors.
In case the status information is 0, the transaction has been successfully completed.
Last updated