# 获取面单标准模板

# 接口说明

可通过该接口获取面单标准模板

# 注意事项:

  • 调用接口时传空的json串即可;
  • 面单标准模板是由平台提供的统一的标准面单模板,全局通用。

# 接口调用请求说明

POST https://api.weixin.qq.com/channels/ec/logistics/ewaybill/biz/template/config?access_token=ACCESS_TOKEN

# 请求参数说明

无请求参数

# 请求参数示例

{
}

# 返回参数说明

参数 类型 描述
errcode number 错误码
errmsg string 错误信息
config Object<delivery_id: Object<template_type: EachDeliveryTemplateConfig>> 所有快递公司模板信息汇总,delivery_id为快递公司id,template_type为模版类型,结构体详情请参考EachDeliveryTemplateConfig

# 返回参数示例


{
	"errcode": 0,
	"errmsg": "ok",
    "config": {
        "YTO": {
            "single": {
                "type": "single",
                "desc": "一联单标准模板",
                "width": 76,
                "height": 130,
                "url": "https://res.wx.qq.com/shop/public/2023-10-23/f81ed53c-8c35-4ea7-b4ec-9ac8d283c9a5.html",
                "custom_config": {
                    "width": 656,
                    "height": 300,
                    "top": 900,
                    "left": 60
                }
            }
        },
        "ZTO": {
            "single": {
                "type": "single",
                "desc": "一联单标准模板",
                "width": 76,
                "height": 130,
                "url": "https://res.wx.qq.com/shop/public/2023-10-23/e500a351-d668-4851-97ff-79137f76cae0.html",
                "custom_config": {
                    "width": 656,
                    "height": 300,
                    "left": 60,
                    "top": 930
                }
            }
        },
        "YUNDA": {
            "single": {
                "type": "single",
                "desc": "一联单标准模板",
                "width": 76,
                "height": 130,
                "url": "https://res.wx.qq.com/shop/public/2023-10-23/29c184fa-5708-45e3-8332-426d9cd59d89.html",
                "custom_config": {
                    "width": 656,
                    "height": 340,
                    "left": 60,
                    "top": 884
                }
            }
        },
        "JTSD": {
            "single": {
                "type": "single",
                "desc": "一联单标准模板",
                "width": 76,
                "height": 130,
                "url": "https://res.wx.qq.com/shop/public/2023-10-23/53dbf069-f44d-44f3-9113-6cae2bd9d536.html",
                "custom_config": {
                    "width": 656,
                    "height": 300,
                    "top": 865,
                    "left": 60
                }
            }
        },
        "STO": {
            "single": {
                "type": "single",
                "desc": "一联单标准模板",
                "width": 76,
                "height": 130,
                "url": "https://res.wx.qq.com/shop/public/2023-10-23/baefa5e0-eeef-41e4-b513-12eee76f9975.html",
                "custom_config": {
                    "width": 712,
                    "height": 300,
                    "left": 24,
                    "top": 754
                }
            }
        }
    }
}

# 错误码

错误码 错误描述
公共错误码 -

# 结构体

# EachDeliveryTemplateConfig

所有快递公司模板信息汇总

参数 类型 描述
type String 模板类型 默认填 "single"
desc String 模板描述 默认填 "一联单标准模板"
width number 面单宽度,(单位毫米)
height number 面单高度,(单位毫米)
url String 标准模板
custom_config CustomConfig 自定义模板配置,枚举值详情请参考CustomConfig

# CustomConfig

自定义模板配置

参数 类型 描述
width number 自定义区域宽度,(单位px, 10px = 1毫米)
height number 自定义区域高度,(单位px, 10px = 1毫米)
top number 自定义区域到顶部距离,(单位px, 10px = 1毫米)
left number 自定义区域到左边距离,(单位px, 10px = 1毫米)