订单-查询收货地址列表
GET
/patient/order/address请求参数
Header 参数
authorization
string
可选
示例值:
{{Btoken}}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
number
必需
正常返回10000,其他表示错误
message
string
接口信息
data
array [object {8}]
收货地址列表数据
id
string
收货地址id
receiver
string
收货人姓名
addressDetail
string
详细地址
isDefault
integer
可选
是否为默认,1为是,0为否
mobile
string
联系方式
province
string
省份
city
string
市区
county
string
县
示例
{
"code": 0,
"message": "string",
"data": [
{
"id": "string",
"receiver": "string",
"addressDetail": "string",
"isDefault": 0,
"mobile": "string",
"province": "string",
"city": "string",
"county": "string"
}
]
}
最后修改时间: 7 个月前