In documentation available at https://www.docusign.com/developer-center/explore/features/templates, it shows the "compositeTemplates" as a property of the EnvelopeDefinition in one example.
In the "Sample Request using compositeTemplates" the "CompositeTemplates" is a property of the "templateRoles" node.
I'm confused. Where should "compositeTemplates" node go?
I'm using the following XML:
<envelopeDefinition xmlns="http://www.docusign.com/restapi"><envelopeDefinition xmlns="http://www.docusign.com/restapi">
<status>sent</status>
<emailSubject>DocuSign API - Embedded Signing example</emailSubject>
<compositeTemplates>
<compositeTemplate>
<serverTemplates>
<sequence>1</sequence>
<templateId>B4649E36-0FA8-42EC-8011-65451EB89DFF</templateId>
<templateRoles>
<templateRole>
<email>name1#domain.com</email>
<name>FIRST ROLE</name>
<roleName>FIRST_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>tabLabel1</tabLabel>
<value>Value1</value>
</text>
<text>
<tabLabel>tabLabel2</tabLabel>
<value>Value2</value>
</text>
<text>
<tabLabel>tabLabel3</tabLabel>
<value>Value3</value>
</text>
</textTabs>
</tabs>
</templateRole>
<templateRole>
<email>name2#domain.com</email>
<name>SECOND ROLE</name>
<roleName>SECOND_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_2</clientUserId>
</templateRole>
</templateRoles>
</serverTemplates>
</compositeTemplate>
<compositeTemplate>
<serverTemplates>
<sequence>2</sequence>
<templateId>5D2E49CC-3CE5-4C28-99C6-64E2589E5395</templateId>
<templateRoles>
<templateRole>
<email>name1#domain.com</email>
<name>First Last</name>
<roleName>FIRST_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>tabLabel1</tabLabel>
<value>Value1</value>
</text>
</textTabs>
</tabs>
</templateRole>
</templateRoles>
</serverTemplates>
</compositeTemplate>
</compositeTemplates>
</envelopeDefinition>
And I'm getting the follow response:
<errorDetails xmlns="http://www.docusign.com/restapi" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<errorCode>TEMPLATE_NOT_PROVIDED</errorCode>
<message>Template was not provided.</message>
</errorDetails>
The compositeTemplates element should be outside and separate from the templateRoles element. Try something like this:
<envelopeDefinition xmlns="http://www.docusign.com/restapi"><envelopeDefinition xmlns="http://www.docusign.com/restapi">
<status>sent</status>
<emailSubject>DocuSign API - Embedded Signing example</emailSubject>
<compositeTemplates>
<compositeTemplate>
<serverTemplates>
<sequence>1</sequence>
<templateId>B4649E36-0FA8-42EC-8011-65451EB89DFF</templateId>
</serverTemplates>
</compositeTemplate>
<compositeTemplate>
<serverTemplates>
<sequence>2</sequence>
<templateId>5D2E49CC-3CE5-4C28-99C6-64E2589E5395</templateId>
</serverTemplates>
</compositeTemplate>
</compositeTemplates>
<templateRoles>
<templateRole>
<email>name1#domain.com</email>
<name>FIRST ROLE</name>
<roleName>FIRST_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>tabLabel1</tabLabel>
<value>Value1</value>
</text>
<text>
<tabLabel>tabLabel2</tabLabel>
<value>Value2</value>
</text>
<text>
<tabLabel>tabLabel3</tabLabel>
<value>Value3</value>
</text>
</textTabs>
</tabs>
</templateRole>
<templateRole>
<email>name2#domain.com</email>
<name>SECOND ROLE</name>
<roleName>SECOND_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_2</clientUserId>
</templateRole>
</templateRoles>
</envelopeDefinition>
Erin,
You mentioned
Tom the compositeTemplate sample on the templates page in the DocuSign Developer Center has been updated with a working example. Thanks for spotting the issue. The current example that's up shows how you can use compositeTemplates to combine two different templates, and assign two different recipients to each of the template roles...
I'm assuming your are referring to my original link (https://www.docusign.com/developer-center/explore/features/templates). If not please let me know where in the DocuSign Developer Center this correction is.
I tried to make the following change, but came up with the error, "ENVELOPE_IS_INCOMPLETE: The Envelope is not Complete. A Complete Envelope Requires Documents, Recipients, Tabs, and a Subject Line.":
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<status>sent</status>
<emailSubject>DocuSign API - Embedded Signing example</emailSubject>
<compositeTemplates>
<compositeTemplate>
<serverTemplates>
<serverTemplate>
<sequence>1</sequence>
<templateId>B4649E36-0FA8-42EC-8011-65451EB89DFF</templateId>
</serverTemplate>
</serverTemplates>
<inlineTemplates>
<inlineTemplate>
<sequence>1</sequence>
<templateRoles>
<templateRole>
<email>name1#domain.com</email>
<name>FIRST ROLE</name>
<roleName>FIRST_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>tabLabel1</tabLabel>
<value>Value1</value>
</text>
<text>
<tabLabel>tabLabel2</tabLabel>
<value>Value2</value>
</text>
<text>
<tabLabel>tabLabel3</tabLabel>
<value>Value3</value>
</text>
</textTabs>
</tabs>
</templateRole>
<templateRole>
<email>name2#domain.com</email>
<name>SECOND ROLE</name>
<roleName>SECOND_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_2</clientUserId>
</templateRole>
</templateRoles>
</inlineTemplate>
</inlineTemplates>
</compositeTemplate>
<compositeTemplate>
<serverTemplates>
<serverTemplate>
<sequence>2</sequence>
<templateId>5D2E49CC-3CE5-4C28-99C6-64E2589E5395</templateId>
</serverTemplate>
</serverTemplates>
<inlineTemplates>
<inlineTemplate>
<sequence>2</sequence>
<templateRoles>
<templateRole>
<email>name1#domain.com</email>
<name>FIRST ROLE</name>
<roleName>FIRST_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>tabLabel1</tabLabel>
<value>Value1</value>
</text>
</textTabs>
</tabs>
</templateRole>
</templateRoles>
</inlineTemplate>
</inlineTemplates>
</compositeTemplate>
</compositeTemplates>
</envelopeDefinition>
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<status>sent</status>
<emailSubject>DocuSign API - Embedded Signing example</emailSubject>
<compositeTemplates>
<compositeTemplate>
<serverTemplates>
<serverTemplate>
<sequence>1</sequence>
<templateId>B4649E36-0FA8-42EC-8011-65451EB89DFF</templateId>
</serverTemplate>
</serverTemplates>
</compositeTemplate>
<compositeTemplate>
<serverTemplates>
<serverTemplate>
<sequence>2</sequence>
<templateId>5D2E49CC-3CE5-4C28-99C6-64E2589E5395</templateId>
</serverTemplate>
</serverTemplates>
</compositeTemplate>
</compositeTemplates>
<templateId>B4649E36-0FA8-42EC-8011-65451EB89DFF</templateId>
<templateRoles>
<templateRole>
<email>NAME1#DOMAIN.COM</email>
<name>FIRST ROLE</name>
<roleName>FIRST_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>tabLabel1</tabLabel>
<value>Value1</value>
</text>
<text>
<tabLabel>tabLabel2</tabLabel>
<value>Value2</value>
</text>
</textTabs>
</tabs>
</templateRole>
<templateRole>
<email>NAME2#DOMAIN.COM</email>
<name>SECOND ROLE</name>
<roleName>SECOND_ROLE</roleName>
<clientUserId>UNIQUE_IDENTIFIER_2</clientUserId>
</templateRole>
</templateRoles>
</envelopeDefinition>
And it kinda worked. An envelope was created for:
Template B4649E36-0FA8-42EC-8011-65451EB89DFF - with populated values and signatures
Template B4649E36-0FA8-42EC-8011-65451EB89DFF - with no values nor signatures
Template 5D2E49CC-3CE5-4C28-99C6-64E2589E5395 - with no values nor signatures
I'm trying to create an envelope with 2 templates populated with data and signers.
Related
This is what I wanted to do:
Using rest API send a document to be signed
Person signs it and webhook triggers XML containing signed document in this case PDF
What happens is in Connect log I see that API triggered webhook that is then picked up by requestb.in. In here what I see is XML is incomplete same as on my real Web service catcher procedure?
<?xml version="1.0" encoding="utf-8"?>
<DocuSignEnvelopeInformation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.docusign.net/API/3.0">
<EnvelopeStatus>
<RecipientStatuses>
<RecipientStatus>
<Type>Signer</Type>
<Email>lino#xx.xxx</Email>
<UserName>Lino</UserName>
<RoutingOrder>1</RoutingOrder>
<Sent>2017-01-10T04:42:34.857</Sent>
<DeclineReason xsi:nil="true" />
<Status>Sent</Status>
<RecipientIPAddress />
<CustomFields />
<TabStatuses>
<TabStatus>
<TabType>SignHere</TabType>
<Status>Active</Status>
<XPosition>52</XPosition>
<YPosition>104</YPosition>
<TabLabel>Sign Here</TabLabel>
<TabName>SignHere</TabName>
<TabValue />
<DocumentID>1</DocumentID>
<PageNumber>1</PageNumber>
</TabStatus>
</TabStatuses>
<AccountStatus>Active</AccountStatus>
<RecipientId>d6567258-6407-4bd8-a544-c12528e32XXX</RecipientId>
</RecipientStatus>
</RecipientStatuses>
<TimeGenerated>2017-01-10T04:42:55.0381883</TimeGenerated>
<EnvelopeID>e08dcbc1-a09a-459b-9b84-5b5Xb3f335XX</EnvelopeID>
<Subject>Request a signature via email example</Subject>
<UserName>Lino</UserName>
<Email>lino#xx.xxx</Email>
<Status>Sent</Status>
<Created>2017-01-10T04:42:34.343</Created>
<Sent>2017-01-10T04:42:34.903</Sent>
<ACStatus>Original</ACStatus>
<ACStatusDate>2017-01-10T04:42:34.343</ACStatusDate>
<ACHolder>Lino</ACHolder>
<ACHolderEmail>lino#xx.xxx</ACHolderEmail>
<ACHolderLocation>DocuSign</ACHolderLocation>
<SigningLocation>Online</SigningLocation>
<SenderIPAddress>XX.XXX.XXX.XX </SenderIPAddress>
<EnvelopePDFHash />
<CustomFields />
<AutoNavigation>true</AutoNavigation>
<EnvelopeIdStamping>true</EnvelopeIdStamping>
<AuthoritativeCopy>false</AuthoritativeCopy>
<DocumentStatuses>
<DocumentStatus>
<ID>1</ID>
<Name>contract.pdf</Name>
<TemplateName />
<Sequence>1</Sequence>
</DocumentStatus>
</DocumentStatuses>
</EnvelopeStatus>
<DocumentPDFs>
<DocumentPDF>
<Name>contract.pdf</Name>
<PDFBytes>.........
But there are no closing tags or anything. This is all I get.
When I try downloading it as BLOB using base64 file it says pdf invalid or corrupted.
I cannot get a date tab to appear on the PDF. Here is my envelope. I can get the sign here tab working fine. The date tabs do not work. There does not seem to be any good help on the date tabs. Any clues..?
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<emailSubject>DocuSign API - Signature Request on Document</emailSubject>
<status>sent</status>
<documents>
<document>
<documentId>1</documentId>
<name>TEST0467960B.pdf</name>
</document>
</documents>
<recipients>
<signers>
<signer>
<recipientId>1</recipientId>
<email>xxxx#xxx.com</email>
<name>First EMailer</name>
<tabs>
<dateSignedTabs>
<dateSigned>
<xPosition>225</xPosition>
<yPosition>655</yPosition>
<documentId>1</documentId>
<pageNumber>5</pageNumber>
<tabLabel>Date Signed</tabLabel>
<name>Date Signed</name>
<recipientId>1</recipientId>
</dateSigned>
</dateSignedTabs>
</tabs>
</signer>
<signer>
<recipientId>2</recipientId>
<email>xxx#xxx.com</email>
<name>Second signed</name>
<tabs>
<dateSignedTabs>
<dateSigned>
<xPosition>225</xPosition>
<yPosition>655</yPosition>
<documentId>1</documentId>
<pageNumber>5</pageNumber>
<tabLabel>Date Signed</tabLabel>
<name>Date Signed</name>
<recipientId>2</recipientId>
</dateSigned>
</dateSignedTabs>
</tabs>
</signer>
</signers>
</recipients>
You appear to be doing it correctly.
DocuSign REST API Help has some pretty good examples of XML formatting most of the calls. JSON appears to be there for everything, XML is there for most things.
Your call works just fine for me with moving them to page 1 on a sample document that has 1 page
Here's my request to create a quick draft to check. And both recipients have a Date Signed tab on page 1 near the bottom, they are however stacked on top of each other.
<envelopeDefinition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.docusign.com/restapi">
<emailSubject>DocuSign API - Signature Request on Document</emailSubject>
<status>created</status>
<documents>
<document>
<documentId>1</documentId>
<name>TEST0467960B.pdf</name>
<documentBase64>{omitted}</documentBase64>
</document>
</documents>
<recipients>
<signers>
<signer>
<recipientId>1</recipientId>
<email>xxxx#xxx.com</email>
<name>First EMailer</name>
<tabs>
<dateSignedTabs>
<dateSigned>
<xPosition>225</xPosition>
<yPosition>655</yPosition>
<documentId>1</documentId>
<pageNumber>1</pageNumber>
<tabLabel>Date Signed</tabLabel>
<name>Date Signed</name>
<recipientId>1</recipientId>
</dateSigned>
</dateSignedTabs>
</tabs>
</signer>
<signer>
<recipientId>2</recipientId>
<email>xxx#xxx.com</email>
<name>Second signed</name>
<tabs>
<dateSignedTabs>
<dateSigned>
<xPosition>225</xPosition>
<yPosition>655</yPosition>
<documentId>1</documentId>
<pageNumber>1</pageNumber>
<tabLabel>Date Signed</tabLabel>
<name>Date Signed</name>
<recipientId>2</recipientId>
</dateSigned>
</dateSignedTabs>
</tabs>
</signer>
</signers>
</recipients>
</envelopeDefinition>
Can you please help me with my below query?
I am currently using demologin to connect to docusign and sending an envelope with 3 recipients - agent, signer , signer. My agent should be able to review and change the email address and name of the first signer. I have set below tags true for agent.
<canEditRecipientEmails>true</canEditRecipientEmails>
<canEditRecipientNames>true</canEditRecipientNames>
I have also added below tags to my first signer though they have made no effect:
<agentCanEditEmail>true</agentCanEditEmail>
<agentCanEditName>true</agentCanEditName>
When agent receives an email and opens it, it says: "There are no recipients to address.
Click 'Complete and Send' to complete your portion of this envelope."
I am expecting below message
"You have been asked to review and add recipient information.
Please enter the email address and name for the associated role and click 'Complete and Send'."
In my xml if I leave signer1 email address and name then it is working fine, agent can enter the email address and name.
Can you please let me know if anything wrong with my xml:
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<emailSubject>Total Gas Power Contract for Signature</emailSubject>
<status>sent</status>
<documents> <document> <name> documentName
</name> <documentId>1</documentId> <order>1</order>
</document> </documents>
<recipients>
<agents> <agent> <email> custEmail </email>
<name> recipientNameCust </name>
<RoleName>Broker</RoleName>
<recipientId>1</recipientId>
<routingOrder>1</routingOrder>
<canEditRecipientEmails>true</canEditRecipientEmails>
<canEditRecipientNames>true</canEditRecipientNames>
</agent> </agents>
<signers> <signer>
<email> custEmail </email> <name> recipientNameCust </name>
<RoleName>Customer</RoleName>
<recipientId>2</recipientId>
<routingOrder>2</routingOrder>
<agentCanEditEmail>true</agentCanEditEmail>
<agentCanEditName>true</agentCanEditName>
<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>2</recipientId>
<tabLabel>Sign Here1</tabLabel> <name>SignHere1</name>
</signHere> </signHereTabs>
</tabs>
</signer>
<signer> <email> receipientEmail </email>
<name> recipientNameTotal </name>
<RoleName>Counter Signee</RoleName>
<recipientId>3</recipientId>
<routingOrder>3</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>3</recipientId>
<tabLabel>Sign Here2</tabLabel> <name>SignHere2</name>
</signHere> </signHereTabs> </tabs>
</signer> </signers>
</recipients>
</envelopeDefinition>
You are getting the message "There are no recipients to address" because you have already filled out the recipient information for your two signers so there's no info for the Agent to enter. To resolve try removing the name and email for each (or just one of those fields) and the agent will then be able to set their info. I just test this and it worked once I removed those fields for the signers.
So, your recipients section of your xml should looks something like this:
<recipients>
<agents>
<agent>
<email>custEmail</email>
<name>recipientNameCust</name>
<recipientId>1</recipientId>
<routingOrder>1</routingOrder>
<canEditRecipientEmails>true</canEditRecipientEmails>
<canEditRecipientNames>true</canEditRecipientNames>
</agent>
</agents>
<signers>
<signer>
<recipientId>2</recipientId>
<routingOrder>2</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>2</recipientId>
<tabLabel>Sign Here1</tabLabel>
<name>SignHere1</name>
</signHere>
</signHereTabs>
</tabs>
</signer>
<signer>
<recipientId>3</recipientId>
<routingOrder>3</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>3</recipientId>
<tabLabel>Sign Here2</tabLabel>
<name>SignHere2</name>
</signHere>
</signHereTabs>
</tabs>
</signer>
</signers>
</recipients>
can you please help me with below query:
I am using demo login. I am trying to send a document for signatures using java. I need to set the expiration on my envelope as 1 day. I tried using below but it did not set the expiration on my envelope.
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<emailSubject>Contract for Signature</emailSubject>
<status>sent</status>
<notification>
<expirations>
<expiration>
<expirationEnabled>true</expirationEnabled>
<expirationAfter>1</expirationAfter>
<expirationWarn>1</expirationWarn>
</expiration>
</expirations>
</notification>
<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</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>
The api documentation says the tags as -expireEnabled instead of expirationEnabled, expireAfter instead of expirationAfter, expireWarn instead of expirationWarn. So I have tried with these tags also and it still did not work. Can you please let me know if anything is wrong with the above xml.
In the portal under Account Administration/Set default reminders expirations the check box "do not allow users to override" is not checked. Also Expire/void Envelope is set to 2 days. But all my envelopes are getting created with expiration setting as 120 days.
Use the following XML:
<notification>
<expirations>
<expireEnabled>true</expireEnabled>
<expireAfter>1</expireAfter>
<expireWarn>0</expireWarn>
</expirations>
</notification>
I am trying to add 2 signer tabs from code for a document and send. I am able to see the signatures tabs properly where they are expected. After the document signed by both signers, when i open the completed document, the signatures are missing. The pdf also shows an error message saying pdf has errors.
Here is my xml. Can you please help:
<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>
You should contact DocuSign support. If the signers are signing and submitting documents, you should see the signatures in the completed document.