【发布时间】:2017-06-07 02:35:28
【问题描述】:
我正在尝试使用我的 DocuSign 开发人员沙盒帐户通过 DocuSign API Explorer 创建一个包含文档和收件人的草稿信封。
尽管有 SUCCESS 响应,但实际的信封既不包含我在请求中包含的文档或收件人。我哪里错了?
这里是请求 XML:
<envelopeDefinition
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.docusign.com/restapi">
<documents>
<documentBase64><Base64BytesHere></documentBase64>
</documents>
<emailSubject>Test from API Explorer</emailSubject>
<recipients>
<signers>
<email>nobody@nobody.com</email>
<name>John Smith</name>
</signers>
</recipients>
<status>created</status>
</envelopeDefinition>
【问题讨论】:
标签: docusignapi