- Proto 文件说明
- 返回码&错误码说明
- initialize 系统配置及初始化
- mall 电商微服务
- 分类相关
- 产品操作相关
- 产品规格相关
- 产品图片相关
- 产品评论相关
- 运费模板相关
- 区域限制相关
- 我的店铺POST
- 商品列表POST
- 商品搜索POST
- 商品详情POST
- 评论列表POST
- 我的店铺 CopyPOST
- 获取上游公司及其分类列表POST
- 获取上游公司产品列表POST
- order 购物车微服务
- passport 通行证微服务
- finance 财务微服务
- market 营销微服务
- relation 社交关系微服务
- ads 广告微服务
- cloud 云存储微服务
- content 内容微服务
- location-定位服务
- MCS 即时通讯(IM)微服务
- task 任务&回调
- bases 管理类接口
- Other 其它
- fts文件传输服务
- notify通知服务(包括短信,邮件,消息等)
- license 许可证认证服务
- feedback意见反馈(工单)服务
- org 组织机构微服务
- material二维码
- invoice合同发票
新建运费模板
开发中
POST
/mall.Product.FreightCreate
请求参数
Header 参数
Request-Id
string
请求ID
默认值:
{% mock 'uuid' %}
Content-Type
string
传输格式
默认值:
application/json
Workspace
string
项目名称
默认值:
mall
Authorization
string
可选
默认值:
YAb6b3m/PsSCMTmXqMyLHu5V4zv4CqqhxDoVzMRc1LHrA8FFjgA2pv293BRlA/aWEi/n0fedA19ZcACeMC3rvJRJ5VeBk/H/zCtMHtCYVnR2lG9qZL2K2oxtt1BNEW1deyP4wF6IosQ5qBTpC/n7bGfzBdty9AGlfoBSFu9R8XE=
Body 参数application/json
identity
string
模板唯一标识
status
integer
状态
title
string
名称
post_type
integer
是否包邮
quota
integer
包邮额度
cost_type
integer
计费类型
region_type
integer
区域限售
rules
array [object {9}]
计费规则
id
integer
规则id
identity
string
规则唯一标识
freight_identity
string
模板 唯一标识
region
array [object {3}]
地区
price_basic
integer
起步运费
count_basic
integer
起步数量
count_extra
integer
加价数量
price_extra
integer
加价单价
status
integer
可选
示例
{
"identity": "",
"status": 0,
"title": "测试模板3",
"post_type": 1,
"quota": 0,
"cost_type": 0,
"region_type": 0,
"rules": [
{
"region": [
{
"id": 11,
"name": "北京",
"second": [
{
"id": 110101001,
"name": "东华门"
},
{
"id": 110101002,
"name": "景山"
}
]
}
],
"price_basic": 105,
"count_basic": 3,
"count_extra": 5,
"price_extra": 20,
"status": 1
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mesh.apinb.com//mall.Product.FreightCreate' \
--header 'Request-Id;' \
--header 'Workspace;' \
--header 'Authorization: YAb6b3m/PsSCMTmXqMyLHu5V4zv4CqqhxDoVzMRc1LHrA8FFjgA2pv293BRlA/aWEi/n0fedA19ZcACeMC3rvJRJ5VeBk/H/zCtMHtCYVnR2lG9qZL2K2oxtt1BNEW1deyP4wF6IosQ5qBTpC/n7bGfzBdty9AGlfoBSFu9R8XE=' \
--header 'Content-Type: application/json' \
--data-raw '{
"identity": "",
"status": 0,
"title": "测试模板3",
"post_type": 1,
"quota": 0,
"cost_type": 0,
"region_type": 0,
"rules": [
{
"region": [
{
"id": 11,
"name": "北京",
"second": [
{
"id": 110101001,
"name": "东华门"
},
{
"id": 110101002,
"name": "景山"
}
]
}
],
"price_basic": 105,
"count_basic": 3,
"count_extra": 5,
"price_extra": 20,
"status": 1
}
]
}'
返回响应
🟢200成功
application/json
Body
status
integer
必需
identity
string
必需
message
string
必需
timeseq
integer
必需
示例
{
"status": 0,
"identity": "2085fa34-d025-4626-9926-b7bc58a78473",
"message": "",
"timeseq": 0
}
修改于 2024-04-10 09:36:02