简体   繁体   English

是否可以通过单个API调用创建和发送多个DocuSign信封

[英]Is it possible to create and send multiple DocuSign envelopes with a single API call

I'm trying to do something like this... 我正在尝试做这样的事情...

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <CreateAndSendEnvelope xmlns="http://www.docusign.net/API/3.0">
      <Envelope>
        [All the good envelope stuff]  
      </Envelope>
      <Envelope>
        [All the second good envelope stuff]  
      </Envelope>
[closing XML]

It may be that this is not possible, can someone confirm? 可能这不可能,有人可以确认吗? Thanks! 谢谢!

The only way to send multiple envelopes as a result of one API call is to use the BulkSend node of the Envelopes: create method. 由于一个API调用而发送多个信封的唯一方法是使用Envelopes:create方法的BulkSend节点。 See docs. 参见文档。

BulkSend is only available for the REST version of the Envelopes: create method, it is not available for the SOAP version. BulkSend仅适用于REST版本的Envelopes:create方法,不适用于SOAP版本。

Depends on what you mean "Is it possible to create and send multiple DocuSign envelopes with a single API call": 取决于您的意思:“是否可以通过单个API调用创建和发送多个DocuSign信封”:

  • YES - Same Envelope template (server or inline) to many different recipients as "multiple envelopes" -将相同的信封模板(服务器或嵌入式)作为“多个信封”发送给许多不同的收件人

  • NO - Bulk Send, Many different Templates many different Recipients -批量发送,许多不同的模板,许多不同的收件人

Bulk Send (REST ONLY) 批量发送(仅REST)

https://docs.docusign.com/esign/restapi/BulkEnvelopes/BulkEnvelopes/ https://docs.docusign.com/esign/restapi/BulkEnvelopes/BulkEnvelopes/

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

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