Adobe echosign , Sending a Document and retriving it's status Adobe echosign , Sending a Document and retriving it's status curl curl

Adobe echosign , Sending a Document and retriving it's status


I think what you are asking is a way to create an agreement through Adobe Sign with some formfields, send it to user for signing and then get its status. To achieve this you will have to make the following API calls -

  • Create an agreement through POST /agreeements API, here you can provide location of the formfields and there values if they are known before hand, you can also specify callbackInfo if required so that your system gets alerted if any action is made on the agreement. On successfully exicution of this API call, Adobe Sign will create an agreement with the specified formfiled and send it to the sender specified in the recipientInfo for signing. As a response of this call you will get an agreementId which can be used later on for fetching further details specific to that agreement.
  • To get the status of the created agreement use GET /agreement/{agreementId} API call, where the agreementId is the one received as a response of POST /agreement API call.

Hope this solves your problem.