- API使用说明
- 物流
- oauth授权
- 订单
- 商品
- 库存
- 仓库
- 入库单
- oms客户
- B2B
- 费用
- webhook
- 直邮订单
获取用户仓库详情
POST
/api/warehouse/getList
仓库
请求参数
Body 参数application/json
codeList
array[string]
可选
示例
{
"codeList": [
"string"
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/warehouse/getList' \
--header 'Content-Type: application/json' \
--data-raw '{
"codeList": [
"string"
]
}'
返回响应
🟢200successful operation
application/json
Body
{@link ApiResult}
code
integer
可选
默认值:
0
message
string
错误提示信息
data
array [object {18}]
数据
id
integer
id
code
string
仓库编号
name
string
仓库名称
type
integer
可选
country
string
可选
province
string
省
city
string
府/市
area
string
区/县
address
string
详细地址
postCode
string
邮编
timeZone
string
可选
contactPerson
string
联系人
phone
string
电话
email
string
邮箱
receiveStatus
integer
可选
orderReceiveStatus
integer
可选
remark
string
备注
isAuth
boolean
是否授权
默认值:
false
requestId
string
请求Id
示例
{
"code": "0",
"message": "string",
"data": [
{
"id": 0,
"code": "string",
"name": "string",
"type": 0,
"country": "string",
"province": "string",
"city": "string",
"area": "string",
"address": "string",
"postCode": "string",
"timeZone": "string",
"contactPerson": "string",
"phone": "string",
"email": "string",
"receiveStatus": 0,
"orderReceiveStatus": 0,
"remark": "string",
"isAuth": "false"
}
],
"requestId": "string"
}
修改于 2024-11-18 05:32:57