当前位置: 首页 > 知识库问答 >
问题:

得到错误“信封不完整。完整的信封需要文档、收件人、标签和主题行。”

江恩
2023-03-14
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.docusign.net/API/3.0">
    <soapenv:Header/>
    <soapenv:Body>
        <ns:CreateAndSendEnvelope>
            <ns:Envelope>
                <ns:TransactionID>133C3780-C205-46D5-BEE4-0CD7ED2A5853</ns:TransactionID>
                <ns:AccountId>afd8e9ea-????-????-????-6d45ccf39d4f</ns:AccountId>
                <ns:Documents>
                    <ns:Document>
                        <ns:ID>1</ns:ID>
                        <ns:Name>Contract</ns:Name>
                        <ns:PDFBytes>JVBERi0xLjUNJeLjz9MNCjU4IDAgb2JqDTw8L0xpbmVhcml6ZWQgMS9MIDkyMTA4L08gNjAv
sN5FYFIW6Lv/sy6DZZlxkKxgkoERRHL8R7AhJMs/dBFMkvE3gs0ENoGRASDAAGBiHJsNCmVu
ZHN0cmVhbQ1lbmRvYmoNc3RhcnR4cmVmDQoxMTYNCiUlRU9GDQo=</ns:PDFBytes>
                        <ns:TransformPdfFields>false</ns:TransformPdfFields>
                    </ns:Document>
                </ns:Documents>
                <ns:Recipients>
                    <ns:Recipient>
                        <ns:ID>1</ns:ID>
                        <ns:UserName>Michel Hebert</ns:UserName>
                        <ns:Email>michel.hebert@ypg.com</ns:Email>
                        <ns:Type>Signer</ns:Type>
                        <ns:RoutingOrder>1</ns:RoutingOrder>
                        <ns:AutoNavigation>true</ns:AutoNavigation>
                        <ns:EmailNotification>
                            <ns:Subject>This is the subject</ns:Subject>
                            <ns:EmailBlurb>This is the test body of the message</ns:EmailBlurb>
                            <ns:Language>en</ns:Language>
                        </ns:EmailNotification>
                        <ns:SignInEachLocation>true</ns:SignInEachLocation>
                    </ns:Recipient>
                </ns:Recipients>
                <ns:Tabs>
                    <ns:Tab>
                        <ns:DocumentID>1</ns:DocumentID>
                        <ns:RecipientID>1</ns:RecipientID>
                        <ns:AnchorTabItem>
                            <ns:AnchorTabString>#?~SIGN{r}~?#</ns:AnchorTabString>
                            <ns:XOffset>0</ns:XOffset>
                            <ns:YOffset>0</ns:YOffset>
                            <ns:Unit>Pixels</ns:Unit>
                            <ns:IgnoreIfNotPresent>true</ns:IgnoreIfNotPresent>
                        </ns:AnchorTabItem>
                        <ns:Type>SignHere</ns:Type>
                    </ns:Tab>
                    <ns:Tab>
                        <ns:DocumentID>1</ns:DocumentID>
                        <ns:RecipientID>1</ns:RecipientID>
                        <ns:AnchorTabItem>
                            <ns:AnchorTabString>#?~INIT{r}~?#</ns:AnchorTabString>
                            <ns:XOffset>0</ns:XOffset>
                            <ns:YOffset>0</ns:YOffset>
                            <ns:Unit>Pixels</ns:Unit>
                            <ns:IgnoreIfNotPresent>true</ns:IgnoreIfNotPresent>
                        </ns:AnchorTabItem>
                        <ns:Type>InitialHere</ns:Type>
                    </ns:Tab>
                    <ns:Tab>
                        <ns:DocumentID>1</ns:DocumentID>
                        <ns:RecipientID>1</ns:RecipientID>
                        <ns:AnchorTabItem>
                            <ns:AnchorTabString>#?~NAME{r}~?#</ns:AnchorTabString>
                            <ns:XOffset>0</ns:XOffset>
                            <ns:YOffset>0</ns:YOffset>
                            <ns:Unit>Pixels</ns:Unit>
                            <ns:IgnoreIfNotPresent>true</ns:IgnoreIfNotPresent>
                        </ns:AnchorTabItem>
                        <ns:Type>FullName</ns:Type>
                    </ns:Tab>
                    <ns:Tab>
                        <ns:DocumentID>1</ns:DocumentID>
                        <ns:RecipientID>1</ns:RecipientID>
                        <ns:AnchorTabItem>
                            <ns:AnchorTabString>#?~DATE{r}~?#</ns:AnchorTabString>
                            <ns:XOffset>0</ns:XOffset>
                            <ns:YOffset>0</ns:YOffset>
                            <ns:Unit>Pixels</ns:Unit>
                            <ns:IgnoreIfNotPresent>true</ns:IgnoreIfNotPresent>
                        </ns:AnchorTabItem>
                        <ns:Type>DateSigned</ns:Type>
                    </ns:Tab>
                </ns:Tabs>
                <ns:AllowReassign>true</ns:AllowReassign>
            </ns:Envelope>
        </ns:CreateAndSendEnvelope>
    </soapenv:Body>
</soapenv:Envelope>

共有1个答案

卫招
2023-03-14

您在信封级别缺少主题和电子邮件简介,如下所示:

        </ns:Tabs>
        <ns:Subject>This is the subject</ns:Subject>
        <ns:EmailBlurb>This is the test body of the message</ns:EmailBlurb>               
        <ns:AllowReassign>true</ns:AllowReassign>

但是,除非为您的帐户(演示或Prod)打开了多语言功能,否则您将得到以下错误:

 <faultstring>A requested plan item is not enabled for this account. Plan item: SignInEachLocation</faultstring>
 <faultactor>https://demo.docusign.net/api/3.0/dsapi.asmx</faultactor>

因此,您可以联系支持部门,要求他们启用多语言功能。

 类似资料:
  • 我对Docusign有两个问题,第一,它总是用相同的帐户发送信封,无论谁被记录总是用相同的帐户发送,我不知道为什么。

  • 本文向大家介绍php封装的mysqli类完整实例,包括了php封装的mysqli类完整实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了php封装的mysqli类。分享给大家供大家参考,具体如下: 类: 用法测试: 更多关于PHP相关内容感兴趣的读者可查看本站专题:《php+mysqli数据库程序设计技巧总结》、《php面向对象程序设计入门教程》、《PHP数组(Array)操作技巧大全》

  • 我在struts2中使用jqgrid插件。我能够在浏览器中看到JSON数据,但不确定如何在网格中显示该数据(使用grid.jsp)。 以下是我正在使用的文件: 支柱。xml 网状物xml http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd“id=“WebApp\u id”版本=“3.0” JSONDataAction.java 用户ction.jav

  • 我真的需要帮助。 我试图在新机器上运行我的jsp应用程序,jetty给了我这个错误:org.apache.jasper.JasperException:pwc6345:调用javac时有一个错误。需要完整的JDK(而不仅仅是JRE 编辑:问题解决-这是月食月星错误-在月食开普勒,它正在工作

  • 本文向大家介绍php封装的单文件(图片)上传类完整实例,包括了php封装的单文件(图片)上传类完整实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了php封装的单文件(图片)上传类。分享给大家供大家参考,具体如下: 更多关于PHP相关内容感兴趣的读者可查看本站专题:《php文件操作总结》、《PHP图形与图片操作技巧汇总》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程