# Get a Shipping Template
# Dxplaination of Interface Call Request
http请求方式:POST
https://api.weixin.qq.com/product/delivery/get_freight_template?access_token=xxxxxxxxx
# Example of request parameters
{}
# Examples of back-up
{
"errcode": 0,
"errmsg": "ok",
"template_list":
[
{
"template_id": 123,
"name": "广东包邮",
"valuation_type": 1
}
]
}
# Dxplaination of callback parameters
| 参数 | type | Introductions |
|---|---|---|
| errcode | number | Error code |
| errmsg | string | Error message |
| template_list[].template_id | number | Template ID |
| template_list[].name | string | Template Name |
| template_list[].valuation_type | number | Type of billing |
# Enumeration - valuation_type
| 枚举值 | describe |
|---|---|
| 1 | Order by Order |
| 2 | By weight |