Skip to main content
caseym41650652
Participant
March 12, 2019
Question

Esign : Position signature block to specific postion using v6 api PHP

  • March 12, 2019
  • 1 reply
  • 1482 views

Hello,
            I have tried changing the postion of default signature added by adobe esign at the end of document. I have tried using

"                    'contentType' => 'SIGNATURE_BLOCK'    " in locations array of fields property for the api  : api/rest/v6/agreements/{agreementId}/formFields . But it does'nt work with "SIGNATURE_BLOCK" contentType and field is not shown in pdf in required location.

Here is link FormFields option is not available in V6 of REST API | Adobe Sign  , i have used as reference.

Please Help.

Thanks

This topic has been closed for replies.

1 reply

Legend
April 10, 2019

For starters use the documentation here

REST API — Document e-signature Software — Adobe Sign Note this link goes to the eu1 server. update the url to the same server as your account (eg na1 or na2 or in1 etc)

the article has a mistake in that there's no recipientInded in v6 but rather an 'Assignee' property which works quite a bit different to an index (see documentation)

easiest thing to do is to use the webportal to send an agreement with the fields you wan to add dragged on to it.

The via the manage tab and history>audit report get the transactionID. This transactionID is also the AgreementID v6 api uses.

use this agreementID in a call to

get /agreements/{agreementId}/formFields

you can use the response as a template for your put call. (but do add the assignee property)