How to add multiple signature anchor
Monday, July 10, 2017 at 08:19amUsing Apex SDK i am trying to create package with pdf file/document and send it to esignlive server
After this I am trying to do something 
.....
request.setEndpoint('https://sandbox.esignlive.com/api/packages/' + pkgID + '/documents/signed_documents'); 
To sign the document.
Problem is that pdf document has 3 pages and all need to signed at the bottom. when I make above API call it only sign first page and skip other two pages
So I am trying to figure out how to sign all 3 pages
Any help will be appreciated. 
Thank you
-Ted
      
                                    
Reply to: How to add multiple signature anchor
Monday, July 10, 2017 at 09:33amReply to: How to add multiple signature anchor
Monday, July 10, 2017 at 10:06amReply to: How to add multiple signature anchor
Monday, July 10, 2017 at 10:48amReply to: How to add multiple signature anchor
Monday, July 10, 2017 at 11:12amhttps://sandbox.esignlive.com/api/packages/’ + pkgID + ‘/documents/signed_documents, did you include the "documents" object? (as stated in the guide) Also, are the signatures on the document for the same signer?Reply to: How to add multiple signature anchor
Monday, July 10, 2017 at 11:22amReply to: How to add multiple signature anchor
Monday, July 10, 2017 at 11:45amReply to: How to add multiple signature anchor
Monday, July 10, 2017 at 12:48pmReply to: How to add multiple signature anchor
Monday, July 10, 2017 at 04:46pmReply to: How to add multiple signature anchor
Wednesday, July 12, 2017 at 04:56am{ "roles": [ { "id": "Dealer", "type": "SIGNER", "signers": [ { "firstName": "John", "lastName": "Smith", "email": "[email protected]" } ], "name": "" }, { "id": "Signer0", "type": "SIGNER", "signers": [ { "firstName": "SIGNER_FIRST_NAME", "lastName": "SIGNER_LAST_NAME", "email": "[email protected]" } ], "name": "" }, { "id": "Signer1", "type": "SIGNER", "signers": [ { "firstName": "test", "lastName": "test", "email": "[email protected]" } ], "name": "" } ], "documents": [ { "name": "TEST2 32.pdf", "index": 0, "approvals": [ { "fields": [ { "type": "SIGNATURE", "width": 200, "height": 50, "extract": false, "extractAnchor": { "text": "Dealer Signature", "index": 0, "width": 150, "height": 40, "anchorPoint": "TOPRIGHT", "characterIndex": 16, "leftOffset": 10, "topOffset": -28 }, "left": 0, "subtype": "FULLNAME", "top": 0 } ], "role": "Dealer" }, { "fields": [ { "type": "SIGNATURE", "width": 200, "height": 50, "extract": false, "extractAnchor": { "text": "Dealer Signature", "index": 1, "width": 150, "height": 40, "anchorPoint": "TOPRIGHT", "characterIndex": 16, "leftOffset": 10, "topOffset": -28 }, "left": 0, "subtype": "FULLNAME", "top": 0 } ], "role": "Dealer" }, { "fields": [ { "type": "SIGNATURE", "width": 200, "height": 50, "extract": false, "extractAnchor": { "text": "Signed for and on behalf of Dealer", "index": 0, "width": 150, "height": 40, "anchorPoint": "BOTTOMLEFT", "characterIndex": 1, "leftOffset": -5, "topOffset": 3 }, "left": 0, "subtype": "FULLNAME", "top": 0 } ], "role": "Dealer" } ], "extract": true } ], "name": "Test Package REST", "type": "PACKAGE", "language": "en", "emailMessage": "", "description": "New Package", "autoComplete": true, "status": "SENT" }