How to set signature subscriber location in adobe echosign document

I am implementing an echosign api on a website.

I downloaded php script from

https://github.com/craigballinger/echosign-api-php

I want a built-in widget for my site. I implemented this widget.

Now in my case we generate a document dynamically for each order. This is a PDF and can be 3 to 6 pages as planned.

Now I want to know how to place a signature in a specific place in a dynamic document.

Before that, I used docusign, in which I need to specify the XY coordinates to indicate the location of the signature of the signature in the document.

Please, help.

+4
source share
2 answers

You cannot programmatically set the location of signature fields using X, Y coordinates, such as DocuSign. I had the same problem and emailed EchoSign, and they instead told me that you need to use text tags for field names.

Documentation: http://secure.echosign.com/doc/TextFormsTutorial.pdf

So, for example, to put the signature field in the document, name the field {{_es_:signer:signature}} , and EchoSign will replace it with the signature field.

It should be noted that if you do not place them in a document, EchoSign will automatically add a signature field to the end of your document.

+1
source

You can use the form field layer template, which is a predefined form field field that can be applied to the document. see formFieldLayerTemplates parameter for more information.

https://secure.echosign.com/public/docs/EchoSignDocumentService17#DocumentCreationInfo

0
source

Source: https://habr.com/ru/post/1498610/


All Articles