docusign - 使用签名组自定义按钮发送信封
docusign - sending an envelope using signing groups custom button
从this官方docusign支持指南,我了解到我们不需要在CRL
中添加Email
或FirstName
或LastName
属性使用 SigningGroup
时调用。下面是我在 salesforce 中的自定义按钮 url。
/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&SourceID=a3G4C000000HE8X&
CRL=SigningGroup~LegalSigner;RoutingOrder~20;Role~Signer5
&OCO=Send
当我尝试发送文档时,出现以下异常:
Error: System.CalloutException: Web service callout failed: WebService
returned a SOAP Fault: The email address for the recipient is invalid.
The recipient Id follows. faultcode=soap:Client
faultactor=https://demo.docusign.net/api/3.0/dsapi.asmx
错误说邮箱地址无效,因为我没有在CRL
参数里传一个。
有人知道我的自定义按钮有什么问题吗url?
我今天与 docusign 专业服务团队进行了交谈,您猜怎么着?我们需要在 org 中升级我们的 docusign 安装包版本。 (从 6.3 升级到 6.7.2)
This 来自 docusign 网站的文档说
Future updates will be downloaded and installed automatically.
想知道为什么它从未为我们自动升级。虽然错误消息非常具有误导性,但在您开始使用任何已发布的新功能之前,请检查您的版本包号。学过的知识。
从this官方docusign支持指南,我了解到我们不需要在CRL
中添加Email
或FirstName
或LastName
属性使用 SigningGroup
时调用。下面是我在 salesforce 中的自定义按钮 url。
/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&SourceID=a3G4C000000HE8X&
CRL=SigningGroup~LegalSigner;RoutingOrder~20;Role~Signer5
&OCO=Send
当我尝试发送文档时,出现以下异常:
Error: System.CalloutException: Web service callout failed: WebService returned a SOAP Fault: The email address for the recipient is invalid. The recipient Id follows. faultcode=soap:Client faultactor=https://demo.docusign.net/api/3.0/dsapi.asmx
错误说邮箱地址无效,因为我没有在CRL
参数里传一个。
有人知道我的自定义按钮有什么问题吗url?
我今天与 docusign 专业服务团队进行了交谈,您猜怎么着?我们需要在 org 中升级我们的 docusign 安装包版本。 (从 6.3 升级到 6.7.2)
This 来自 docusign 网站的文档说
Future updates will be downloaded and installed automatically.
想知道为什么它从未为我们自动升级。虽然错误消息非常具有误导性,但在您开始使用任何已发布的新功能之前,请检查您的版本包号。学过的知识。