MerchantWithdraw

Event Type: merchant_withdraw

  • merchant_id[* String]: Merchant Account ID
  • withdraw[* Object Withdraw]: Merchant Income
    • amount[Object Amount]: Withdraw Amount
      • currency[* String]: Local Currency Type, 3-letter code according to ISO 4217
      • amount_local[* Double]: Amount ( Local Currency )
      • amount_usd[Double]: Amount ( USD ), The USD amount is converted from the original amount by the exchange rate, (required when not access to China Server)
      • amount_cny[Double]: Amount ( CNY ), The CNY amount is converted from the original amount by the exchange rate, (required when accessing a China Server)
    • method[String]: Withdraw Method, enumeration
      • card
      • ewallet
      • entity
    • card[Object Card]: Withdraw Card
      • card_bin[* String]: Card Bin
      • last_four_digits[* String]: Last Four Digits of the Card Number
      • card_number_length[* Integer]: Card Number Length
      • holder_name[Object Name]: Cardholder Name
        • first_name[String]: First Name
        • middle_name[String]: Middle Name
        • last_name[String]: Last Name
        • nickname[String]: Nickname
      • debit_or_credit[String]: Card Type, enumeration
        • debit
        • credit
      • issuer_region[String]: Issuer Region, 2-letter country code according to ISO 3166
      • expiration_date[String]: Expiration Date, format: YYYY-MM, example: 1998-01
    • ewallet_id[String]: Withdraw Ewallet ID
    • entity_account[String]: Entity Account
    • entity_account_name[String]: Entity Account Name
  • balance_amount[Object Amount]: Balance
    • currency[* String]: Local Currency Type, 3-letter code according to ISO 4217
    • amount_local[* Double]: Amount ( Local Currency )
    • amount_usd[Double]: Amount ( USD ), The USD amount is converted from the original amount by the exchange rate, (required when not access to China Server)
    • amount_cny[Double]: Amount ( CNY ), The CNY amount is converted from the original amount by the exchange rate, (required when accessing a China Server)
{
    "merchant_id": "NFK00937",
    "withdraw": {
        "amount": {
            "currency": "USD",
            "amount_local": 6.8,
            "amount_usd": 1,
            "amount_cny": 6.8
        },
        "method": "card",
        "card": {
            "card_bin": "622207",
            "last_four_digits": "1234",
            "card_number_length": 16,
            "holder_name": {
                "first_name": "Pierre",
                "middle_name": "",
                "last_name": "Laurent",
                "nickname": "Snochy"
            },
            "debit_or_credit": "credit",
            "issuer_region": "CN",
            "expiration_date": "1998-01-01"
        }
    },
    "balance_amount": {
        "currency": "USD",
        "amount_local": 6.8,
        "amount_usd": 1,
        "amount_cny": 6.8
    }
}