Docusignapi DocuSign API-使用带有“批准”按钮的文档创建信封

Docusignapi DocuSign API-使用带有“批准”按钮的文档创建信封,docusignapi,Docusignapi,我正在创建一个带有TXT文档的草稿信封,它需要显示一个Approve(批准)按钮,以允许签名者签名,而无需在文档本身上签名/首字母缩写。不幸的是,我无法在文档上显示“批准”按钮,我哪里出错了 以下是请求XML: <ns1:envelopeDefinition xmlns:ns1="http://www.docusign.com/restapi"> <ns1:emailSubject>Test from iPaaS</ns1:emailSubject>

我正在创建一个带有TXT文档的草稿信封,它需要显示一个Approve(批准)按钮,以允许签名者签名,而无需在文档本身上签名/首字母缩写。不幸的是,我无法在文档上显示“批准”按钮,我哪里出错了

以下是请求XML:

<ns1:envelopeDefinition xmlns:ns1="http://www.docusign.com/restapi">
    <ns1:emailSubject>Test from iPaaS</ns1:emailSubject>
        <ns1:documents>
            <ns1:document>
                <ns1:name>TestDocument</ns1:name>
                <ns1:documentId>1</ns1:documentId>
                <ns1:documentBase64>&lt;Base64BytesHere&gt;</ns1:documentBase64>
                <ns1:fileExtension>txt</ns1:fileExtension>
            </ns1:document>
        </ns1:documents>
        <ns1:recipients>
            <ns1:signers>
                <ns1:signer>
                    <ns1:routingOrder>1</ns1:routingOrder>
                    <ns1:recipientId>1</ns1:recipientId>
                    <ns1:name>John Smith</ns1:name>
                    <ns1:email>nobody@nobody.com</ns1:email>
                </ns1:signer> 
            </ns1:signers>
        </ns1:recipients>
        <ns1:tabs>
            <ns1:approveTabs>
                <ns1:approve>
                    <anchorCaseSensitive />
                    <anchorHorizontalAlignment />
                    <anchorIgnoreIfNotPresent />
                    <anchorMatchWholeWord />
                    <anchorString />
                    <anchorUnits />
                    <anchorXOffset />
                    <anchorYOffset />
                    <conditionalParentLabel />
                    <conditionalParentValue />
                    <customTabId />
                    <documentId>1</documentId>
                    <mergeField />
                    <pageNumber>1</pageNumber>
                    <recipientId>1</recipientId>
                    <tabId />
                    <tabOrder />
                    <templateLocked />
                    <templateRequired />
                    <xPosition>100</xPosition>
                    <yPosition>100</yPosition>
                    <bold />
                    <font />
                    <fontColor />
                    <fontSize />
                    <italic />
                    <tabLabel />
                    <underline />
                    <buttonText />
                    <height>30</height>
                    <width>50</width>
                </ns1:approve>
            </ns1:approveTabs>
        </ns1:tabs>
</ns1:envelopeDefinition>
节点应位于节点内部。下面的例子应该有用

<ns1:envelopeDefinition xmlns:ns1="http://www.docusign.com/restapi">
    <ns1:emailSubject>Test from iPaaS</ns1:emailSubject>
        <ns1:documents>
            <ns1:document>
                <ns1:name>TestDocument</ns1:name>
                <ns1:documentId>1</ns1:documentId>
                <ns1:fileExtension>txt</ns1:fileExtension>
                <ns1:documentBase64>RG9jIFRXTyBUV08gVFdP</ns1:documentBase64>
                <ns1:fileExtension>txt</ns1:fileExtension>
            </ns1:document>
        </ns1:documents>
        <ns1:recipients>
            <ns1:signers>
                <ns1:signer>
                    <ns1:routingOrder>1</ns1:routingOrder>
                    <ns1:recipientId>1</ns1:recipientId>
                    <ns1:name>John Smith</ns1:name>
                    <ns1:email>johnsmith@acme.com</ns1:email>
                    <ns1:tabs>
                        <ns1:approveTabs>
                            <ns1:approve>                  
                                <documentId>1</documentId>
                                <pageNumber>1</pageNumber>
                                <xPosition>100</xPosition>
                                <yPosition>100</yPosition>
                                <height>30</height>
                                <width>50</width>
                            </ns1:approve>
                        </ns1:approveTabs>
                    </ns1:tabs>
                </ns1:signer> 
            </ns1:signers>
        </ns1:recipients>
</ns1:envelopeDefinition>