Skip to main content
Solved

Attach document to existing Docusign template document

  • December 5, 2024
  • 2 replies
  • 44 views

Forum|alt.badge.img+1

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
Forum|alt.badge.img+18
  • Hero
  • 701 replies
  • Answer
  • 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.


Forum|alt.badge.img+7
  • Docusign Employee
  • 67 replies
  • 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,