繁体   English   中英

DocuSignAPI收件人2 SOAP添加说明

[英]DocuSignAPI Adding Note for Recipient 2 SOAP

我正在使用SOAP API,并已使用.NET集成了DocuSignAPI。

我有以下代码为每个收件人添加个人注释。

    recipient1.note = "this is recipient 1";
    recipient2.note = "this is recipient 2";

显示收件人1的注释,但收件人2的注释不显示。

我究竟做错了什么? 请帮忙。

谢谢。

使用PHP代码对我来说效果很好。 这可能是一个案例问题,我在两个接收者中的每个接收者的Note属性中使用大写字母。 我将它们设置如下:

$rcp1 = new Recipient();    // First recipient to put in recipient array
$rcp1->UserName = "John Doe";
$rcp1->Email = $_apiRecipient1Email;
$rcp1->Type = RecipientTypeCode::Signer;
$rcp1->ID = "1";
$rcp1->RoutingOrder = 1;
$rcp1->RequireIDLookup = FALSE;
$rcp1->Note = "Note One";

$rcp2 = new Recipient();    // Second recipient to put in recipient array
$rcp2->UserName = "Joe Mama";
$rcp2->Email = $_apiRecipient2Email;
$rcp2->Type = RecipientTypeCode::Signer;
$rcp2->ID = "2";
$rcp2->RoutingOrder = 1;
$rcp2->RequireIDLookup = FALSE;
$rcp2->Note = "Note Two";

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM