# 获取运费模板
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/delivery/get_freight_template?access_token=xxxxxxxxx
# 请求参数示例
{}
# 回包示例
{
"errcode": 0,
"errmsg": "ok",
"template_list":
[
{
"template_id": 123,
"name": "广东包邮",
"valuation_type": 1
}
]
}
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
template_list[].template_id | number | 模板ID |
template_list[].name | string | 模板名称 |
template_list[].valuation_type | number | 计费类型 |
# 枚举-valuation_type
枚举值 | 描述 |
---|---|
1 | 按件 |
2 | 按重量 |