我使用 Docusign Java Rest API 创建一个包含一个或多个文档的信封。 我找不到在签名过程完成后将签名的 PDF 发送给签名者的方法。 只有帐户所有者才会收到包含文档的电子邮件。
{
"documents": [
{
"documentBase64": "[Binary content]",
"documentId": "101",
"fileExtension": "pdf",
"name": "document.pdf",
"signerMustAcknowledge": "view_accept"
}
],
"emailSubject": "Sign the documents",
"externalEnvelopeId": "fa0c5d8d-e47c-4d8c-b51f-dd2bfbde3a8e",
"messageLock": "true",
"notification": {
"expirations": {
"expireAfter": "14",
"expireEnabled": "true",
"expireWarn": "2"
},
"useAccountDefaults": "true"
},
"recipients": {
"signers": [
{
"clientUserId": "signer-0001",
"deliveryMethod": "email",
"email": "signer@email",
"embeddedRecipientStartURL": "SIGN_AT_DOCUSIGN",
"name": "signer",
"phoneNumber": {
"countryCode": "33",
"number": "XXXXXX"
},
"recipientId": "a2fc6bfe-4171-4a92-aa00-7e5daa5ac67a",
"recipientSignatureProviders": [
{
"signatureProviderName": "UniversalSignaturePen_OpenTrust_Hash_TSP",
"signatureProviderOptions": {
"sms": "XXXXXXXX"
}
}
],
"tabs": {
"signHereTabs": [
{
"xposition": "80",
"yposition": "620",
"documentId": "101",
"pageNumber": "1",
"recipientId": "a2fc6bfe-4171-4a92-aa00-7e5daa5ac67a",
"xPosition": "80",
"yPosition": "620"
}
]
}
}
]
},
"status": "sent"
}
我应该使用抄送参数还是还有其他选择?在我看来,抄送适合更多的人。
当信封“完成”时(当所有签名者和其他收件人都完成其操作时),签名者将自动收到文档的副本。
您的测试没有发生这种情况吗?