I am implementing echosign api on a website.
I have downloaded the php script from
https://github.com/craigballinger/echosign-api-php
I want embedded widget for my website. I have implemented this widget.
Now in my case we generate the document dynamically for every order. It is PDF and may be from 3 to 6 page according to plan.
Now I want to know how to put signature placeholder at specific location of a dynamic doc.
Before this I was using docusign in which i have to specify X Y coordinates to specify the location of signature placeholder on the document.
Please help.
You cannot programmatically set the location of the signature fields using X,Y coordinates like DocuSign. I had the same issue and emailed EchoSign, and they told me instead that the you have to use Text Tags for the field names.
Documentiation: http://secure.echosign.com/doc/TextFormsTutorial.pdf
So for example, to place a signature field into a document, name the field
{{_es_:signer:signature}}and EchoSign will replace it with a signature field.Of note, if you don't place these into the document, EchoSign will automatically append a signature field to the end of your document.