In Docusign I have two server templates:
- template A has signature on the 3rd page.
- template B on 5th.
The document to be signed should replace the documents of the templates, and be a combination of A+B, so it would have signatures in 3rd and 8th page, it should combine the two server templates one AFTER another.
However, what's happening is that both templates get applied to the beginning of the document, so signatures are on pages 3 and 5.
How can I sequence the server templates to indicate they should not overlap over each other, be placed one after another instead?
Here is the composite template I'm trying to build to achieve that
{
'composite_template_id': None,
'document': {
'document_base64': '...',
'document_id': 3,
'file_extension': 'pdf',
'name': 'Sample file.pdf',
},
'server_templates': [
{
'sequence': '1',
'template_id': 'e9e2******'
},
{
'sequence': '2',
'template_id': 'e269******'
}
],
'inline_templates': [
{
'recipients': {
'carbon_copies': [],
'signers': [
{
'client_user_id': '2',
'email': 'bobtest@example.com',
'name': 'Bob Test',
'recipient_id': '2',
'role_name': 'Signer',
}
],
},
'sequence': '3'
}
],
}
Expected result: the document be signed with signatures in pages 3 and 8. Current result: signatures are being placed in pages 3 and 5.