Skip to main content
Question

Attach document to existing Docusign template document


Forum|alt.badge.img

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!

2 replies

Hengfeng Ge
Rising Star
Forum|alt.badge.img+11
  • Rising Star
  • 453 replies
  • 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+4
  • Docusign Employee
  • 52 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,