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

Retrieve Payee

You can retrieve payee's account detail by sending a POST request to Yuansfer Retrieve Payee Account API.

RetrievePayee

POST https://mapi.yuansfer.com/v2/customers/account/retrieve

Request Body

Name
Type
Description

accountType

string

Payee account type, possible values: "PAYPAL", "VENMO", "CARD", "BANK_ACCOUNT", "PREPAID_CARD", "PAPER_CHECK", "ALIPAY", "WIRE_ACCOUNT"

customerNo

string

The auto-generated payee's id in Yuansfer's system when register customer account

timestamp

string

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

accountTag

string

The payee's account id in merchant's system Either accountTag or accontToken is required

accountToken

string

The unique, auto-generated account identifier. Either accountTag or accountToken is required

merchantNo

string

Merchant ID

storeNo

string

Store ID

verifySign

string

The parameter signature

{
    "result": {
        "accountTag": "a58b2dc4-102d-4487-98bd-cda3d10f7364",
        "country": "CN",
        "createdAt": "2021-05-28T07:12:53Z",
        "firstName": "Test",
        "lastName": "Test",
        "currency": "USD",
        "accountToken": "2010305228249079846486",
        "customerNo": "2000305228249079101184",
        "email": "sales@ldf.fit",
        "status": "activated"
    },
    "ret_msg": "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

amountTag

string

The payee's account id in merchant's system

country

string

The payee account country code

createdAt

string

The date and time when the account was created

Format : "yyyy-MM-ddTHH:mm:ssZ".

firstName

string

The first name of the payee

lastName

string

The last name of the payee

accountToken

string

The unique, auto-generated account identifier ID in Yuansfer's system.

customerNo

string

The auto-generated user's id in Yuansfer's system.

status

string

The status of the payee account.

email

string

The payee account email address

PreviousCreate PayeeNextBalance

Last updated 3 years ago

Was this helpful?

The response return code. For more details, see .

here