how to get “envelope ID” displayed in the bottom corner in docusign completed Document

时光总嘲笑我的痴心妄想 提交于 2019-12-13 04:29:16

问题


I am trying to understand if it would be possible to display the "Envelope ID" generated on the final PDF to be displayed in the bottom corner of the page instead of top corner.

The issue i am facing it the display is cutting of the LOGO of the page.

Any reference would be greatly appreciated!!!


回答1:


It's not possible to control the placement (location) of the Envelope ID stamp that DocuSign automatically places on the documents -- but you can disable (remove) it altogether. See the answer in this post for information on how that's done: DocuSign REST API Remove EnvelopeID from PDF.

Once you disable DocuSign's auto-stamping of the Envelope ID, you can use the Envelope ID tab to place the Envelope ID whereever you want it to appear in the Envelope. Simply specify the Envelope ID tabs as part of your Create Envelope request:

"envelopeIdTabs": [{ 
 "anchorString": null, 
 "anchorXOffset": null, 
 "anchorYOffset": null, 
 "anchorIgnoreIfNotPresent": null, 
 "anchorUnits": null, 
 "documentId": "#", 
 "pageNumber": "#", 
 "xPosition": "#", 
 "yPosition": "#", 
 "tabLabel": "Envelope ID, 
}] 

See page 352 of the REST API guide (https://10226ec94e53f4ca538f-0035e62ac0d194a46695a3b225d72cc8.ssl.cf2.rackcdn.com/rest-api-guide-v2.pdf) for details about the Envelope ID tab type.



来源:https://stackoverflow.com/questions/22771435/how-to-get-envelope-id-displayed-in-the-bottom-corner-in-docusign-completed-do

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!