- user
- product
- cart
- checkout
- payment
- Order
- eino
CreateAddress
开发中
POST
/checkout/address
请求参数
Header 参数
Authorization
string
可选
示例值:
{{token}}
Body 参数application/json
street_address
string
必需
city
string
必需
state
string
必需
country
string
必需
zip_code
integer
必需
示例
{
"street_address": "广东省 安码市 玉门市 折巷45798号 98号楼",
"city": "贵州市",
"state": "广西壮族自治区",
"country": "nostrud veniam in aliquip",
"zip_code": 559081
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
address
object
必需
示例
{
"code": 0,
"msg": "string",
"data": {
"address": {
"uuid": "string",
"street_address": "string",
"city": "string",
"state": "string",
"country": "string",
"zip_code": 0
}
}
}
修改于 2025-02-27 15:57:11