Skip to main content
New Voice
December 5, 2024
Solved

Attach document to existing Docusign template document

  • December 5, 2024
  • 2 replies
  • 89 views

Hi,

I have a DocuSign template that includes field tags in the document. I need to attach another document to this template document. The reason for this is that the template page serves as a common page that must appear at the end of all other documents. Is it possible to attach an additional document to the existing template document using DocuSign API?

Thanks!

Best answer by Hengfeng Ge

please reference:

https://www.docusign.com/blog/developers/dsdev-why-use-composite-templates

FreeLink/甫连信息

🌍 DocuSign Partner | Partner Profile

🏆 DocuSign 2024 APAC Reseller Growth Partner of the Year

🌟 The only DocuSign Partner globally certified as both a Certified eSignature Administrator and eSignature Technical Consultant.

📊 DocuSign Community Leaderboard Top 5 contributor.

🚀 Expertise in DocuSign integrations with on-premises systems for leading enterprises across various industries.

2 replies

Hengfeng Ge
Hero
Hero
December 5, 2024

please reference:

https://www.docusign.com/blog/developers/dsdev-why-use-composite-templates

FreeLink/甫连信息

🌍 DocuSign Partner | Partner Profile

🏆 DocuSign 2024 APAC Reseller Growth Partner of the Year

🌟 The only DocuSign Partner globally certified as both a Certified eSignature Administrator and eSignature Technical Consultant.

📊 DocuSign Community Leaderboard Top 5 contributor.

🚀 Expertise in DocuSign integrations with on-premises systems for leading enterprises across various industries.

Welcome to the DocuSign Community! Your feedback is highly valued. If you find my response helpful, please give it a "Like" and consider marking it as the "Best Answer" to assist others with similar issues.
Docusign Employee
December 6, 2024

Hello,

 

You can use the API Method TemplateDocuments Update: https://developers.docusign.com/docs/esign-rest-api/reference/templates/templatedocuments/update/

 

And use the following code:

{
  "documents": [
    {
      "documentBase64": "Base64Document",
      "documentId": "2",
      "name": "Example.pdf",
      "fileExtension": "pdf"
    }
  ]
}
 

Thanks,