获取渠道
POST
/commonApi/inner/getChannelList请求参数
Header 参数
token
string
可选
示例值:
150e1b82-0c79-41a7-a1ea-7908e27f9883
Body 参数application/json
houseId
integer
仓库id
busType
integer
必需
业务类型 0 一件代发 1 大货中转
示例
{
"houseId": 0,
"busType": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer | null
错误码
data
array [object {3}] | null
返回数据
channelId
integer
渠道id
channelCode
string
渠道编码
channelName
string
渠道简称
msg
string | null
可选
错误提示,用户可阅读
errorMsg
string | null
可选
actionMsg
string | null
用于统一行为
solution
string | null
可选
解决方案 可以是文本也可以是html前端会渲染出来
msgCode
string | null
可选
示例
{
"code": 0,
"data": [
{
"channelId": 0,
"channelCode": "string",
"channelName": "string"
}
],
"msg": "string",
"errorMsg": "string",
"actionMsg": "string",
"solution": "string",
"msgCode": "string"
}
最后修改时间: 5 months ago