版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
languagetext
{
  	"codeList": ["SN1","CN1"],
	"nameList" : ["test","test"],
	"phoneList" : ["111111","188888"],
	"addressType" : 1,
	"county":"CN"
	
}

请求字段描述

字段名

必填性

类型

描述

codeList

O

List<String>

地址簿编码数组

nameListOList<String>用户名数组
phoneListOList<String>手机号数组
addressTypeMInteger地址簿类型:
0-海外仓其他 1-集货仓 2-海外仓FBA 
countryOString国家


返回内容

成功样例

代码块
languagejs
{
    "code": "0",
    "data": [
        {
            "addressLine1": "大连路970号",
            "addressLine2": "",
            "addressLine3": "",
            "addressType": 1,
            "city": "市辖区",
            "code": "TEST",
            "companyName": "",
            "contactEmail": "",
            "contactName": "Sammy",
            "contactPhone": "000000000",
            "country": "CN",
            "district": "杨浦区",
            "postCode": "",
            "remark": "",
            "state": "上海市"
        }
    ],
    "errors": "",
    "message": "",
    "messageId": "",
    "success": true,
    "warnList": ""
}

...