帮助中心

第三方平台-智慧门店-外部渠道上传TaobaoNick

2020-12-03

接口说明:

外部渠道上传TaobaoNick接口。

注:1.此接口供外部渠道(非智慧门店渠道)调用。

        2.若上传的淘宝nick已经存在,数据不会被修改,仍然返回成功,不会返回错误。

请求说明:

HTTP请求方式:POST

返回数据格式:JSON

请求路径:api/v-taobao/cvip/taobaobindinfoadd

请求参数:

字段类型为空长度描述
SellerNamestring1~20

商家账号nick(全打通使用旗舰店账号,线下通使用br账号)

TaobaoNickstring1~20淘宝nick
OldCodestring1~20会员线下卡号
BindDatestring
绑定时间(yyyy-MM-dd HH:mm:ss格式)

返回参数:

字段类型描述
TaobaoNickstring淘宝nick
OldCodestring会员线下卡号

请求参数示例代码(json对象):

{
    "SellerName": "br_xxxxx_a",
    "TaobaoNick": "xxxxxxxxxxxxx",
    "OldCode": "EZ00001230",
    "BindDate": "2018-09-01 10:20:30"
}

系统级返回结果示例(json):

{
    "Status": true,
    "StatusCode": 200,
    "Msg": "成功",
    "Timestamp": "20150622093101",
    "Sign": "6ECC9BF07C69E80F6D8552FF7B2E7A8FCA2CC80E",
    "Result": 见业务返回结果示例
}

业务返回结果示例(json):

{
    "TaobaoNick": "tb_nick",
    "OldCode": "EZ00001230"
}


2038