0

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

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

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

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

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

谢谢。

4

1 回答 1

0

使用 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";
于 2013-07-28T00:48:09.930 回答