卖家入账

事件类别:merchant_income

  • merchant_id[* String]:卖家账户 ID
  • merchant_income[* Object MerchantIncome]:入账信息
    • income_account[* String]:入账账号
    • income_amount[* Object Amount]:入账金额
      • currency[* String]:原始金额货币类型,3 字母编码,符合 ISO 4217 标准
      • amount_local[* Double]:原始金额
      • amount_usd[Double]:金额(美金),将原始金额经过汇率换算后的美金金额,(条件必须:如果接入的是非 CN 站点则必须)
      • amount_cny[Double]:金额(人民币),将原始金额经过汇率换算后的人民币金额,(条件必须:如果接入的是 CN 站点则必须)
    • income_source[String]:入账来源
{
    "merchant_id": "NFK00937",
    "merchant_income": {
        "income_account": "873264379473",
        "income_amount": {
            "currency": "CNY",
            "amount_local": 6.8,
            "amount_usd": 1,
            "amount_cny": 6.8
        },
        "income_source": "https://td/shop/0012"
    }
}