- PluginAccount
- PluginPyament
- PluginWemall
获取我的收货地址 [ 会员 ]
GET
/plugin-payment/api.auth.address/get
最后修改时间:2024-07-28 10:13:04
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/x-www-form-urlencoded
id
string
收货地址编号
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://dev.v6.thinkadmin.top/plugin-payment/api.auth.address/get' \
--data-urlencode 'id='
返回响应
🟢200获取我的收货地址
application/json
Body
code
integer
必需
info
string
必需
data
object
必需
list
array [object {15}]
必需
示例
{
"code": 1,
"info": "获取地址数据!",
"data": {
"list": [
{
"id": 2,
"unid": 1,
"type": 0,
"idcode": "",
"idimg1": "",
"idimg2": "",
"phone": "13812345678",
"username": "小小邹",
"region_prov": "广东省",
"region_city": "广州市",
"region_area": "天河区",
"region_addr": "车陂大街1号202",
"deleted": 0,
"create_time": "2023年04月28日 00:58:38",
"update_time": "2023年04月28日 00:58:38"
},
{
"id": 1,
"unid": 1,
"type": 0,
"idcode": "",
"idimg1": "",
"idimg2": "",
"phone": "13812345678",
"username": "小小邹",
"region_prov": "广东省",
"region_city": "广州市",
"region_area": "天河区",
"region_addr": "车陂大街1号202",
"deleted": 0,
"create_time": "2023年04月28日 00:58:33",
"update_time": "2023年04月28日 00:58:33"
}
]
}
}
修改于 2024-07-28 10:13:04