事件类别:merchant_register
merchant
[* Object Merchant]:卖家信息merchant_id
[* String]:卖家账户 IDregister_time
[* String]:卖家注册(创建)时间,符合 ISO 8601 标准,格式 YYYY-MM-DDTHH:mm:ss.sssZ ,例如 2021-10-12T14:20:50.521+07:00login_time
[String]:卖家最近一次登录时间,符合 ISO 8601 标准,格式 YYYY-MM-DDTHH:mm:ss.sssZ ,例如 2021-10-12T14:20:50.521+07:00shop_name
[String]:店铺名称shop_phone
[Object Phone]:店铺电话country_code
[* Integer]:国家区号,符合国际电信联盟 E.164 标准,不含 + 号和前缀 0,如 86phone_number
[* String]:手机号 / 电话号码,不含 + 号和前缀
shop_email
[String]:店铺邮箱shop_address
[Object Address]:店铺地址country
[* String]:国家,两位国家码,符合 ISO 3166 标准region
[* String]:省 / 州 / 地区city
[* String]:城市district
[String]:区县detail
[String]:详细地址zip_code
[String]:邮政编码
shop_url
[String]:店铺网站地址merchant_type
[String]:卖家类型,枚举值- person:个人
- entity:企业
merchant_level
[String]:卖家等级company
[String]:卖家公司primary_category
[String]:卖家主营类目product_count
[Integer]:卖家在线商品数量history_order_count
[Integer]:卖家历史成单量history_order_amount
[Object Amount]:卖家历史成单金额currency
[* String]:原始金额货币类型,3 字母编码,符合 ISO 4217 标准amount_local
[* Double]:原始金额amount_usd
[Double]:金额(美金),将原始金额经过汇率换算后的美金金额,(条件必须:如果接入的是非 CN 站点则必须)amount_cny
[Double]:金额(人民币),将原始金额经过汇率换算后的人民币金额,(条件必须:如果接入的是 CN 站点则必须)
{
"merchant": {
"merchant_id": "NFK00937",
"shop_name": "Hello World",
"shop_phone": {
"country_code": 86,
"phone_number": "18700001112"
},
"shop_email": "[email protected]",
"shop_address": {
"country": "CN",
"region": "浙江省",
"city": "杭州市",
"district": "余杭区",
"detail": "文一西路海创园 18 幢",
"zip_code": "310000"
},
"shop_url": "https://td/shop/0012",
"register_time": "2021-10-12T14:20:50.521+07:00",
"login_time": "2021-10-12T14:22:50.521+07:00",
"merchant_type": "entity",
"merchant_level": "A",
"company": "XXX",
"primary_category": "XXXX",
"product_count": 1,
"history_order_count": 1,
"history_order_amount": {
"currency": "CNY",
"amount_local": 68,
"amount_usd": 10,
"amount_cny": 68
}
}
}