Balance

Use payout balance api to find out the available balance in your payor account.

Balance

POST https://mapi.yuansfer.com/v3/payouts/balance

Request Body

NameTypeDescription

timestamp

string

Current UTC time, Correct format should be: "yyyy-MM-ddTHH:mm:ssZ"

currency

string

The payout currency associate with payor account. It has to be three-letters currency code.

merchantNo

string

Merchant ID

storeNo

string

Store ID

verifySign

string

The parameter signature

{
    "balance": [
        {
            "amount": 499000.00,
            "currency": "USD"
        }
    ],
    "ret_msg": "success",
    "ret_code": "000100"
}

Response

Parameter

Type

Description

balance

array-object

The balance array-object.

ret_msg

string

The response return message.

ret_code

string

The response return code. For more details, see here.

Result Array-Object

Parameter

Type

Description

amount

number

The transaction amount.

currency

string

The three-character currency code that identifies the currency.

Last updated