Search Payments

You can retrieve details of payments by searching Payout records from Yuansfer's system.

Inquiry

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

Request Body

NameTypeDescription

merchantNo

string

Merchant ID

storeNo

string

Store ID

verifySign

string

The parameter signature.

invoiceId

string

The Invoice Number of the transaction in the merchant's system.

{
    "result": {
        "amount": "10.00",
        "receiver": "sb-lfgk83666547@business.example.com",
        "transactionNo": "303768502875460668",
        "createdTime": "2021-01-18T02:19:00Z",
        "invoiceId": "20210118101801",
        "currency": "USD",
        "status": "pending"
    },
    "ret_msg": "query success",
    "ret_code": "000100"
}

Response

Parameter

Type

Description

result

object

The result object.

ret_msg

string

The response return message.

ret_code

string

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

Result Object

Parameter

Type

Description

amount

string

The transaction amount.

receiver

string

The receiver of the payment.

transactionNo

string

The Transaction ID in the Yuansfer system.

createdTime

string

The date and time when the transaction was created.

Format : "yyyy-MM-dd HH:mm:ss".

invoiceId

string

The Invoice Number of the transaction in the merchant's system.

currency

string

The supported currency are "USD", "CNY", "PHP", "IDR", "KRW", "HKD".

status

string

The status of the transaction.

Last updated