Skip to content
On this page

5.1 查询用户收货地址

接口说明:

MethodURLContentType
GET/api/v1/delivery-address/listapplication/json

返回结果说明:

参数类型说明描述
resultList收货地址列表
successboolean请求是否成功
errormsgstring错误信息
errorcodestring错误码
requestIdstring请求ID

请求参数示例:

GET /api/v1/delivery-address/list

返回数据示例:

json
{
  "success": true,
  "code": "000",
  "message": "成功",
  "data": [
    {
      "id": 71,
      "receiverName": "cip",
      "receiverTel": "13666688969",
      "provinceCode": "310000",
      "provinceName": "上海市",
      "cityCode": "310100",
      "cityName": "上海市",
      "districtCode": "310104",
      "districtName": "徐汇区",
      "address": "xx路xx号x幢",
      "fullAddress": "上海市上海市徐汇区xx路xx号x幢",
      "defaultAddress": true,
      "tag": "公司"
    }
  ]
}