DocuSign代表告诉我们,'envelopesApi.getDocument()'将向我们提供附有任何附件的文件。我收到了文件,但没有附件。附件远低于5 MB(它只有几百K)。该文档确实显示用户是否通过DocuSign网站查看文档。
下载的文档确实有一个回形针,点击后无效。附件不在文档的末尾或.pdf附件下。
如果可能的话,我需要一种方法来获取附件,而无需将用户发送到您的网站。 envelopepesApi.getDocument()不起作用,除非我以某种方式做错了什么。有没有其他方法可以通过api下载附件而无需将用户发送到DocuSign网站?
任何帮助将不胜感激,谢谢!
答案 0 :(得分:0)
我知道这可能为时已晚,但请尝试在此调用中使用“combined”作为documentId的值:
import requests
data = {
"product" : "TestProduct",
"component" : "TestComponent",
"summary" : "This is the best bug report",
"version" : "unspecified",
"description" : "This is the best GUI for reporting bugs"
}
url_bz_restapi = 'http://localhost/bugzilla/rest.cgi/bug'
r = requests.post(url_bz_restapi, data=data)
这将为您提供所有已签名的文档,其中包含摘要信息和所有附件。