PDF模板预览
接口说明
[!NOTE]
平台需要自行把PDF模板中需要动态显示的内容以表单的方式设置好。
http请求方式
[!NOTE]
POST application/x-www-form-urlencoded
http请求地址
[!NOTE]
$SERVICE_URL/v2/sign/fileTpl/pre #其中$SERVICE_URL为生产或测试的地址
http请求参数
除公共必填参数外,还需要传以下参数
参数 | 类型 | 是否必填 | 默认值 | 说明 |
---|---|---|---|---|
templateNo | string | * | 模板编号 | |
contractParams | json string | ? | 模板参数; 已填充pdf表域模板预览 |
代码实现
JAVA实现
Map<String, Object> params = bodyParams;
String url = SERVICE_URL + "/v2/sign/fileTpl/pre";
params.put("templateNo","2FB63E5FE16C4DE5B78A6C21F301AB38");
params.put("contractParams","{}");
String str = HttpClientUtils.init().getPost(url, null, params, true);
System.out.println(str);
http返回参数
[!NOTE]
返回response为application/json的数据,其字段说明如下
参数 | 类型 | 是否必返回 | 说明 |
---|---|---|---|
success | bool | * | 成功true;异常false |
msg | string | ? | 异常时,返回异常原因 |
resultCode | string | ? | 异常时返回 |
data | string | ? | 模板预览URL |
[!NOTE]
返回结果,参考:
//正确响应:
{"data":"https://web.sandbox.junziqian.com/advancedVd=presGr6-F2nKNwReSzw","success":true}
//错误响应:
{"msg":"模板文件不能为空","resultCode":"HTTP_PARAM_ERROR","success":false}