使用面对面登录文档时出现问题,页面在第一个签名者签名后重定向


issue in using inperson Signing in docusign, page redirects after 1st signer signs

我在我的网站的合同中使用Docusign进行数字签名。我希望我的客户在会议结束后立即签名,双方将在会议结束时逐一签名。

所以我正在使用亲自签名者选项。我需要合同中两个客户的 2 个签名,所以我设置了 2 个亲自签名我的代码中的签名者收件人。

但是当我为第一个签名者签署文件,并准备签署第二个签名者时签名者,页面重定向到成功页面(我在脚本中设置的页面)不允许为第二个收件人签名。如何获得两个签名者签署并完成合同。

如果我做错了什么,我正在附加代码。

这是代码:

'"recipients'":{ '"inPersonSigners'":[ { '"hostEmail'":'"$username'", '"hostName'":'"Priya Ranjan Jena'", '"recipientId'":'"2'", '"signerName'":'"Rajesh ultra Sahoo'", '"rountingOrder'":'"1'", '"tabs'":{ '"signHereTabs'":[ { '"xPosition'":'"90'", '"yPosition'":'"590'", '"documentId'":'"1'", '"pageNumber'":'"4'" } ] } }, { '"hostEmail'":'"$username'", '"hostName'":'"Priya Ranjan Jena'", '"recipientId'":'"1'", '"signerName'":'"Maitreya Kumar Tripathi'", '"rountingOrder'":'"2'", '"tabs'":{ '"signHereTabs'":[ { '"xPosition'":'"390'", '"yPosition'":'"590'", '"documentId'":'"1'", '"pageNumber'":'"4'" } ] } } ] }

对于每个签名会话,您都需要获取收件人视图。 根据您的描述,系统按照规范运行。

Step 1: you create the envelope with 2 recipients
Step 2: you request an embedded view for 1st recipient
Step 3: upon completion the signer is redirected to your return URL

要获得第二人的签名,您需要执行以下操作:

Step 4: request the embedded view for the 2nd recipient
Step 5: get control when that embedded view returns.

希望这是有道理的。

-mb