0

ドキュメントのコードから 2 つの署名者タブを追加して送信しようとしています。署名タブが期待される場所に正しく表示されています。両方の署名者が文書に署名した後、完成した文書を開くと、署名がありません。PDFには、pdfにエラーがあるというエラーメッセージも表示されます。

これが私のxmlです。助けてください:

<envelopeDefinition xmlns="http://www.docusign.com/restapi">
 <emailSubject>API Call for adding signature request to document and sending</emailSubject>
<status>sent</status>
            <documents>
            <document>
             <name> documentName  </name>
                <documentId>1</documentId>
                <order>1</order>
            </document>
            </documents>
            <recipients>
            <signers>
            <signer>
                <email> custEmail    </email>
                <name> recipientNameCust  </name>
                 <recipientId>1</recipientId>
                <routingOrder>1</routingOrder>
            <tabs> 

            <signHereTabs>
            <signHere>
               <anchorString>SIGNED on behalf of the Customer</anchorString>
               <anchorXOffset>10</anchorXOffset>
               <anchorYOffset>50</anchorYOffset>
               <anchorIgnoreIfNotPresent>false</anchorIgnoreIfNotPresent>
               <anchorUnits>Pixels</anchorUnits>
               <documentId>1</documentId>
               <recipientId>1</recipientId>
               <tabLabel>Sign Here1</tabLabel>
               <name>SignHere1</name>
            </signHere>
                   </signHereTabs>
            </tabs>
            </signer>

            <signer>
                <email> receipientEmail    </email>
                <name> recipientNameTotal  </name>
                <recipientId>2</recipientId>
                <routingOrder>2</routingOrder>
            <tabs> 

            <signHereTabs>
            <signHere>
               <anchorString>SIGNED on behalf of Total Gas</anchorString>
               <anchorXOffset>10</anchorXOffset>
               <anchorYOffset>50</anchorYOffset>
               <anchorIgnoreIfNotPresent>false</anchorIgnoreIfNotPresent>
               <anchorUnits>Pixels</anchorUnits>
               <documentId>1</documentId>
               <recipientId>2</recipientId>
               <tabLabel>Sign Here2</tabLabel>
               <name>SignHere2</name>
            </signHere>
                   </signHereTabs>
            </tabs>
            </signer>
            </signers>
            </recipients> </envelopeDefinition>
4

1 に答える 1

1

DocuSign サポートに連絡する必要があります。署名者がドキュメントに署名して送信している場合は、完成したドキュメントに署名が表示されます。

于 2014-02-22T18:21:43.967 に答える