使用REST API从模板预览文档

时间:2015-12-03 05:32:20

标签: docusignapi

我们在DocuSign中有多个模板,每个模板都有一个文档。为此,我们在应用程序中设计了一个界面,列出了所有模板。在发送所选模板(和文档)之前,是否可以从模板(而不是页面图像)预览文档?

注意:已使用RESTFul API。

2 个答案:

答案 0 :(得分:1)

您可以像在信封中下载/访问PDF一样访问存储在模板中的PDF。

https://www.docusign.com/p/RESTAPIGuide/RESTAPIGuide.htm#REST%20API%20References/Get%20Template.htm?Highlight=template

用于提取模板的第一个文档的示例GET URL: https://demo.docusign.net/restapi/v2/accounts/ /模板//文件/ 1

答案 1 :(得分:0)

使用' / envelope / {templateid} / documents / {documentid}' REST API调用以获取响应,然后在将响应打印到浏览器中进行预览之前设置标题。

示例:

header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="xyz.pdf"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
print_r($response);//Print the response form the REST API.