查询打印模板列表
描述
查询表单打印模板列表
使用须知
开发前,请仔细阅读开发指南。
- POST请求头
{"Authorization": "Bearer YOUR_APIKEY"}
YOUR_APIKEY
请阅读开发指南了解。
接口URL
POST - /openapi/v1/group/print_template_list
请求参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
appId | 572177e6951f4dc54168c1eb | String | 是 | 应用id |
entryId | 5000b6f44edf717f2fad9788 | String | 是 | 表单id |
请求示例
{
"appId": "572177e6951f4dc54168c1eb",
"entryId": "5000b6f44edf717f2fad9788"
}
响应参数
参数名 | 示例值 | 参数类型 | 参数描述 |
---|---|---|---|
templates | - | Array | |
templates.name | word模版 | String | 打印模板名称 |
templates.printId | 7103b8a85d6e6479d380fff1 | String | 打印模板id |
templates.type | word | String | 打印模板类型,html(在线模板)word(word模板) |
响应数据样例
{
"templates": [
{
"name": "word模版",
"printId": "7103b8a85d6e6479d380fff1",
"type": "word"
},
{
"name": "在线模版",
"printId": "045a9c6c7d9588dabb55d8f7",
"type": "html"
}
]
}