问题描述
我正在研究Docusign和PHP脚本语言。
我已完成签名过程,并从此代码获得响应。
I am working on Docusign and PHP scripting language. I have completed signing process and i get response from this code.
$response = $service->views->getRecipientView(
$returnUrl,
$envelopeId,
$contact_name,
$contact_email,
$client_id,
$authMethod);
现在我需要获取由用户签名的信封。我在邮件中签名了信封,但是我需要从脚本中下载它,或者从中下载docusign url。如果有人提供解决方案或提供任何链接,这将是非常有用的帮助。
Now i need to get envelop that are signed by user. I get signed envelop in mail but i need to download it from script or get docusign url from which i can download.It would be great help if anyone give solution or provide any link.
推荐答案
您成功获取了嵌入式收件人(签名者)视图URL,重定向到该URL,然后签名者签名。
You successfully get the embedded recipient (signer) view url, redirect to it, and the signer signs.
现在要检索已签名的文档吗? (还有完成证书吗?)
Now you want to retrieve the signed documents? (And the Certificate of Completion too?)
使用EnvelopeDocuments :: List方法。 这是一个检索签名文件的方法。
Use the EnvelopeDocuments::List method. Here is a recipe which retrieves the signed files.
您应先检查信封状态,以确保信封已完成。
You should first check the envelope status to ensure that the envelope was completed.
这篇关于如何在docusign中获得签名信封的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!