Skip to main content

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!

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.


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": s
    {
      "documentBase64": "Base64Document",
      "documentId": "2",
      "name": "Example.pdf",
      "fileExtension": "pdf"
    }
  ]
}
 

Thanks,


Reply