Yuansfer DOCS
  • Introduction
  • GUIDE
    • Online Payment
    • Point of Sale
      • Scan QR Code
      • Create QR Code
    • Plugins
    • Payment Methods
    • Financial Report
    • Security
    • Incident Priorities
    • SDK
    • Tutorials & Examples
      • PHP SDK
      • JAVA SDK
      • C# SDK
      • JS SDK
  • API REFERENCE V3
    • Sandbox Environment
      • Apply Sandbox Credentials
    • Signing API Parameters
    • Customers
      • Register Customer
      • Retrieve Customer
      • Update Customer
    • Payments
      • Online Payment
        • Yuansfer Checkout
        • Yuansfer Integrated Payment
          • Braintree Payments
          • Prepay
        • Recurring Payments
          • Authorize
          • Apply Token
          • Pay
          • Revoke
      • Point of Sale Payment
        • Scan QR Code
          • Add
          • Prepay
        • Create QR Code
    • Transaction Revert
      • Refund
      • Cancel
    • Transaction Data Search
      • Transaction Query
    • Payouts
      • Create Payee
      • Retrieve Payee
      • Balance
      • Send Money
      • Search Payments
    • Notes
  • 中文
Powered by GitBook
On this page

Was this helpful?

  1. API REFERENCE V3
  2. Payouts

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

Name
Type
Description

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

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.

PreviousSend MoneyNextNotes

Last updated 3 years ago

Was this helpful?

The response return code. For more details, see .

here