Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/backbone.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# DocuSign-CreateAndSendEnvelope路由1,2,3_C#_Soap_Routing_Docusignapi - Fatal编程技术网

C# DocuSign-CreateAndSendEnvelope路由1,2,3

C# DocuSign-CreateAndSendEnvelope路由1,2,3,c#,soap,routing,docusignapi,C#,Soap,Routing,Docusignapi,使用![CreateAndSendEnvelope][1]并在发送顺序上遇到问题。我想按顺序包括三个签名人。签名者1=代理,签名者2=租户,签名者3=所有者。将副本返回给代理 现在,它正在同时向所有收件人发送文档 在Soap中使用C我愿意接受所有反馈:)如果您提供了您正在使用的代码或XML,这会有所帮助。您提到“路由顺序”,所以我认为您使用的是字段,但我会提供适合我的内容。它基于您在中输入的值,而不是您列出收件人的顺序 <ns:Recipients> <ns:Recipie

使用![CreateAndSendEnvelope][1]并在发送顺序上遇到问题。我想按顺序包括三个签名人。签名者1=代理,签名者2=租户,签名者3=所有者。将副本返回给代理

现在,它正在同时向所有收件人发送文档


在Soap中使用C我愿意接受所有反馈:)

如果您提供了您正在使用的代码或XML,这会有所帮助。您提到“路由顺序”,所以我认为您使用的是
字段,但我会提供适合我的内容。它基于您在
中输入的值,而不是您列出收件人的顺序

<ns:Recipients>
  <ns:Recipient>
    <ns:ID>1</ns:ID>
    <ns:UserName>Signer One</ns:UserName>
    <ns:Email>signerone@notreal.com</ns:Email>
    <ns:Type>Signer</ns:Type>
    <ns:RoutingOrder>1</ns:RoutingOrder>
  </ns:Recipient>
  <ns:Recipient>
    <ns:ID>2</ns:ID>
    <ns:UserName>Signer Two</ns:UserName>
    <ns:Email>signertwo@notreal.com</ns:Email>
    <ns:Type>Signer</ns:Type>
    <ns:RoutingOrder>2</ns:RoutingOrder>
  </ns:Recipient>
  <ns:Recipient>
    <ns:ID>3</ns:ID>
    <ns:UserName>Signer Three</ns:UserName>
    <ns:Email>signerthree@notreal.com</ns:Email>
    <ns:Type>Signer</ns:Type>
    <ns:RoutingOrder>3</ns:RoutingOrder>
  </ns:Recipient>
</ns:Recipients>

1.
一号签字人
signerone@notreal.com
签字人
1.
2.
二号签字人
signertwo@notreal.com
签字人
2.
3.
三号签名
signerthree@notreal.com
签字人
3.

Reinkesm-感谢您的帮助。我会尽力找出一些代码,但我真的很感谢你的帮助。