Skip to main content
New Voice
October 21, 2024
Solved

Insert Signature at the End of Pages Dynamically

  • October 21, 2024
  • 2 replies
  • 626 views

Hey there,

I’m looking to create documents dynamically using the DocuSign API. Since the content of these documents is generated dynamically, the number of pages can vary significantly. I would like to know if there is a solution that allows for automatically placing a signature field at the end of each page, regardless of the total page count.

Is there a method or feature within the API that enables this functionality?

 

Thank you in advance

Best answer by JohnSantos

@chris-SWAYPC 

Yes, the DocuSign API offers a solution that allows you to dynamically place a signature field at the end of each page, even when the number of pages varies. This can be accomplished using anchor tagging along with a combination of anchor strings or anchor coordinates.

You can place signature fields on each page using anchor-based positioning by inserting invisible or specific markers (like text or images) at the bottom of each page in your dynamically generated document. DocuSign can detect these anchors and place the signature field accordingly.

In the API request, use the anchor-based positioning by specifying the anchor text (e.g., "anchorString": "{{SignHere}}"). DocuSign will place the signature field at the location of that anchor string on each page.

2 replies

JohnSantos
Guru
Guru
October 21, 2024

@chris-SWAYPC 

Yes, the DocuSign API offers a solution that allows you to dynamically place a signature field at the end of each page, even when the number of pages varies. This can be accomplished using anchor tagging along with a combination of anchor strings or anchor coordinates.

You can place signature fields on each page using anchor-based positioning by inserting invisible or specific markers (like text or images) at the bottom of each page in your dynamically generated document. DocuSign can detect these anchors and place the signature field accordingly.

In the API request, use the anchor-based positioning by specifying the anchor text (e.g., "anchorString": "{{SignHere}}"). DocuSign will place the signature field at the location of that anchor string on each page.

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.
New Voice
October 22, 2024

@chris-SWAYPC

Yes, the DocuSign API offers a solution that allows you to dynamically place a signature field at the end of each page, even when the number of pages varies. This can be accomplished using anchor tagging along with a combination of anchor strings or anchor coordinates.

You can place signature fields on each page using anchor-based positioning by inserting invisible or specific markers (like text or images) at the bottom of each page in your dynamically generated document. DocuSign can detect these anchors and place the signature field accordingly.

In the API request, use the anchor-based positioning by specifying the anchor text (e.g., "anchorString": "{{SignHere}}"). DocuSign will place the signature field at the location of that anchor string on each page.

Hey @JohnSantos , thank you for reaching out and for your answer!