简体   繁体   English

DocuSignAPI收件人2 SOAP添加说明

[英]DocuSignAPI Adding Note for Recipient 2 SOAP

I am using SOAP API and have integrated DocuSignAPI using .NET. 我正在使用SOAP API,并已使用.NET集成了DocuSignAPI。

I have the following code to add a personal note for each of the recipients. 我有以下代码为每个收件人添加个人注释。

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

The note for recipient 1 shows up, but not for recipient 2. 显示收件人1的注释,但收件人2的注释不显示。

What am I doing wrong? 我究竟做错了什么? Please help. 请帮忙。

Thanks. 谢谢。

It works just fine for me using PHP code. 使用PHP代码对我来说效果很好。 It's possible this might be a case issue, I am using capitals for the Note property for each of my two recipients. 这可能是一个案例问题,我在两个接收者中的每个接收者的Note属性中使用大写字母。 I'm setting them up as follows: 我将它们设置如下:

$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