SlideShare a Scribd company logo
EchoSign API Guide
This document provides an overview of how to use the EchoSign API in common integration scenarios.




Table of Contents
Sending a document for Signature ........................................................................................................... 2
   Checking the status of a document ...................................................................................................... 2
   Retrieving the final signed document................................................................................................... 3
Signing Widgets ....................................................................................................................................... 4
   Checking the status of a document signed through a widget................................................................ 4




                                                                                                                                                       1
                                           EchoSign API Guide (rev1 - October 11, 2010)

                                                 Copyright © EchoSign Inc. 2005-2010
Sending a document for Signature
To send a document out for signature through the EchoSign API, call the sendDocument method. This
method has 3 parameters that you will need to pass, apiKey, senderInfo and documentCreationInfo. For
more information on EchoSign API methods, please refer to the API documentation.

After you send a document, you can retrieve up-to-date status of the document either by polling, or
when EchoSign notifies you the status of the document has changed.



Checking the status of a document

There are two ways you can retrieve up-to-date status of the document: by polling, or by calling the
getDocumentInfo method when EchoSign notifies you the status of the document has changed.



    1. Polling
You can call the getDocumentInfo method periodically to check the status of your documents.

The upside of polling is that it is more reliable in the event that callback fails since your system is down,
scheduled maintenance, lack of connectivity, etc.

The downside is that you have to create a scheduling mechanism to query the status of all documents
that were not yet signed, waste time and resources checking to see if a document status has changed
instead of only retrieving the updated status when you know it has changed.

If you choose to use polling, we recommend you will have different policies based on document “age” -
ie. reducing the frequency of polling if the document was not signed after X days.


    2. Push Notifications
Push notifications allow your application to retrieve up-to-date status after EchoSign notifies you the
status of a document had changed.

In the CallbackInfo object used in DocumentCreationInfo, you can set the signedDocumentUrl
parameter. This is the URL to which EchoSign will call your system using HTTP GET every time the status
of the document has changed. You can then use getDocumentInfo to get the latest status of the
                                                                                                                2
                               EchoSign API Guide (rev1 - October 11, 2010)

                                   Copyright © EchoSign Inc. 2005-2010
document.

You probably have a unique identifier on your end for each document, and some sort of table that maps
that to the documentKey you get as an output from sendDocument. Pass your unique identifier as a
parameter in the URL, so that when EchoSign pings you to notify the document status has changed, you
will know which document ID on your end we are talking about, and subsequently which documentKey.

Then, call the getDocumentInfo method and provide that documentKey, and EchoSign will return the
updated status of the document.

In most cases, when the document status is “Signed”, you would like to retrieve the signed document
PDF using the getLatestDocument method and store it in your system.

The HTTP GET method of retrieving up-to-date document status is not configured by default. Please
contact EchoSign if you wish to use this option.




Retrieving the final signed document

There are two ways you can retrieve the final signed document: calling getLastestDocument after the
document has been signed, or by setting the signedDocumentUrl where EchoSign will do a HTTP PUT
with the final signed PDF if you aren’t using the callback mechanism to notify you when document status
has changed.


   1. Call getLatestDocument after the document has been signed

       If you’ve determined the document has been signed, by calling the getDocumentInfo method
       for example, you can then call the getLatestDocument method to retrieve the final signed PDF.


   2. Setting the signedDocumentUrl where EchoSign will do a HTTP PUT
      with the final signed PDF

       In the CallbackInfo object used in DocumentCreationInfo, you can set the signedDocumentUrl
       parameter. This is the URL to which EchoSign will do a HTTP PUT with the final signed PDF.
       Note: HTTP PUT is the default behavior on the signedDocumentUrl, but if you configure HTTP
       GET to check the status of a document, this option for receiving the final signed document is no

                                                                                                          3
                             EchoSign API Guide (rev1 - October 11, 2010)

                                 Copyright © EchoSign Inc. 2005-2010
longer available.




Signing Widgets

Checking the status of a document signed through a widget

A widget is a template. Every document signed through a widget is a separate instance of that widget,
and EchoSign creates a unique documentKey for every such document. A good way to think about the
relationship of the widget and the documents signed through it is a parent-child relationship. Therefore,
the status of the “parent” widget itself does not reflect the status of its children.

Using this terminology, the documentKey of the widget is the parent documentKey. The documentKeys
for every document signed through the widget are the child documentKeys. The child documentKeys are
what you need to use when checking the status of a specific document signed through a widget.

There are two ways you can find the child documentKeys: by using the getFormData method, or by using
the completion URL.



    1. Finding the child documentKey using the getFormData method
Call the getFormData method and pass it the documentKey of the parent widget. The output will include
the data in comma-separated value (CSV) format. The first line include column header names and then a
line for each signer who signed the parent widget.

The document keys of all child widgets will be in the first column, under “EchoSign Transaction number”.
See example below:

        EchoSign transaction number, Agreement name, signed, email
        12ABC3D456E7F,test widget,2/5/10 09:21,eran@echosign.com

Notice there may be multiple child agreements to the same parent Widget - each with a different
document key. Each child document can be signed by one or two signers (the original signer and
potentially by the sender), resulting in multiple rows in the CSV. See example below:
                                                                                                        4
                              EchoSign API Guide (rev1 - October 11, 2010)

                                  Copyright © EchoSign Inc. 2005-2010
EchoSign transaction number, Agreement name, signed, email
        12ABC3D456E7F,test widget,2/5/10 09:21,eran@echosign.com
        98ZYX7W654V3U,test widget,2/6/10 11:56,eran2@echosign.com




If the child document is signed by two signers, there will be two rows in the CSV with the same
document key. See example below:

        EchoSign transaction number, Agreement name, signed, email
        12ABC3D456E7F,test widget,2/5/10 09:21,eran@echosign.com
        98ZYX7W654V3U,test widget,2/6/10 11:56,eran2@echosign.com
        12ABC3D456E7F,test widget,2/6/10 13:37,eran3@echosign.com




    2. Finding the child documentKeys using the completion URL

If the widget is part of a multi-step process, you can tell EchoSign where to send the user after they’ve
completed the widget by setting the URL parameter in the WidgetCompletionInfo object. The child
documentKey will be appended as a parameter to that URL.

Now that you know the child documentKey, you can check the status of the document when EchoSign
notifies you the status of the document has changed, or by polling. Please refer to the “Checking the
status of a document” section for instructions.




                                                                                                            5
                              EchoSign API Guide (rev1 - October 11, 2010)

                                  Copyright © EchoSign Inc. 2005-2010

More Related Content

Similar to EchoSign E-Signature API Guide (8)

PPT
EchoSign Summer 2011 release
Jason M. Lemkin
 
PDF
Echo Sign E-Signature User Guide - Sign in Seconds
Jason M. Lemkin
 
PPT
EchoSign 5.2 Release Feature Summary
Jason M. Lemkin
 
PDF
EchoSign E-Signature for SugarCRM User Guide
Jason M. Lemkin
 
PDF
About E-Signatures from #1 Rated EchoSign.com
Jason Lemkin
 
PPTX
EchoSign Summer 2011 Release Notes
Eran Aloni
 
PPT
How Facebook, Groupon and Pandora use EchoSign E-Signature from Adobe
Jason M. Lemkin
 
PDF
Esignature api-report1
Subhodip Datta
 
EchoSign Summer 2011 release
Jason M. Lemkin
 
Echo Sign E-Signature User Guide - Sign in Seconds
Jason M. Lemkin
 
EchoSign 5.2 Release Feature Summary
Jason M. Lemkin
 
EchoSign E-Signature for SugarCRM User Guide
Jason M. Lemkin
 
About E-Signatures from #1 Rated EchoSign.com
Jason Lemkin
 
EchoSign Summer 2011 Release Notes
Eran Aloni
 
How Facebook, Groupon and Pandora use EchoSign E-Signature from Adobe
Jason M. Lemkin
 
Esignature api-report1
Subhodip Datta
 

More from Jason M. Lemkin (20)

PDF
Equality, Inclusion and Balance Guide to SaaStr Annual 2020
Jason M. Lemkin
 
PDF
Who's Speaking at 2020 SaaStr Annual
Jason M. Lemkin
 
PDF
Things VCs Say: Jason Lemkin and Justin Kan
Jason M. Lemkin
 
PDF
Echo sign fall 2012 release - Whats new
Jason M. Lemkin
 
PPTX
Groupon: 1,000 Contracts a Day on Adobe EchoSign
Jason M. Lemkin
 
PPTX
BT & Adobe EchoSign: One Million E-Signed Contracts and Counting
Jason M. Lemkin
 
PPTX
EchoSign Case Study: How Adobe Cut 2 Weeks From its Contracting Process
Jason M. Lemkin
 
PPTX
Adobe EchoSign Web Contracts 2012 Overview Presentation
Jason M. Lemkin
 
PPTX
V6.3
Jason M. Lemkin
 
PPTX
EchoSign Winter 2012 Release - Feb '12
Jason M. Lemkin
 
PPTX
How Fortune 100 United HealthCare Uses Adobe EchoSign Electronic Signatures
Jason M. Lemkin
 
PDF
E-Signatures: The Who, The When, The Where, The Why, The How
Jason M. Lemkin
 
PPT
Groupon E-Signing in the Cloud with EchoSign from Adobe
Jason M. Lemkin
 
PPT
EchoSign Electronic Signature for NetSuite v2.0
Jason M. Lemkin
 
PDF
EchoSign E-Signature for NetSuite 2.0
Jason M. Lemkin
 
DOC
Aetna Goes Green with EchoSign Electronic Signature, Wins Infoworld 15 Award
Jason M. Lemkin
 
PPT
EchoSign E-Signature Winter '11 Release and New Features
Jason M. Lemkin
 
PDF
CRM Wiz Kids: EchoSign E-Signature, Zuora, Xactly, Right90, Manticore, + more
Jason M. Lemkin
 
DOC
Aetna paperless contracting echo sign 03 02-10 final
Jason M. Lemkin
 
PPT
EchoSign Electronic Signature Summer 2010 New Features
Jason M. Lemkin
 
Equality, Inclusion and Balance Guide to SaaStr Annual 2020
Jason M. Lemkin
 
Who's Speaking at 2020 SaaStr Annual
Jason M. Lemkin
 
Things VCs Say: Jason Lemkin and Justin Kan
Jason M. Lemkin
 
Echo sign fall 2012 release - Whats new
Jason M. Lemkin
 
Groupon: 1,000 Contracts a Day on Adobe EchoSign
Jason M. Lemkin
 
BT & Adobe EchoSign: One Million E-Signed Contracts and Counting
Jason M. Lemkin
 
EchoSign Case Study: How Adobe Cut 2 Weeks From its Contracting Process
Jason M. Lemkin
 
Adobe EchoSign Web Contracts 2012 Overview Presentation
Jason M. Lemkin
 
EchoSign Winter 2012 Release - Feb '12
Jason M. Lemkin
 
How Fortune 100 United HealthCare Uses Adobe EchoSign Electronic Signatures
Jason M. Lemkin
 
E-Signatures: The Who, The When, The Where, The Why, The How
Jason M. Lemkin
 
Groupon E-Signing in the Cloud with EchoSign from Adobe
Jason M. Lemkin
 
EchoSign Electronic Signature for NetSuite v2.0
Jason M. Lemkin
 
EchoSign E-Signature for NetSuite 2.0
Jason M. Lemkin
 
Aetna Goes Green with EchoSign Electronic Signature, Wins Infoworld 15 Award
Jason M. Lemkin
 
EchoSign E-Signature Winter '11 Release and New Features
Jason M. Lemkin
 
CRM Wiz Kids: EchoSign E-Signature, Zuora, Xactly, Right90, Manticore, + more
Jason M. Lemkin
 
Aetna paperless contracting echo sign 03 02-10 final
Jason M. Lemkin
 
EchoSign Electronic Signature Summer 2010 New Features
Jason M. Lemkin
 
Ad

Recently uploaded (20)

PDF
Upskill to Agentic Automation 2025 - Kickoff Meeting
DianaGray10
 
PDF
2025-07-15 EMEA Volledig Inzicht Dutch Webinar
ThousandEyes
 
PDF
CIFDAQ Market Insight for 14th July 2025
CIFDAQ
 
PDF
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
PDF
Arcee AI - building and working with small language models (06/25)
Julien SIMON
 
PDF
HR agent at Mediq: Lessons learned on Agent Builder & Maestro by Tacstone Tec...
UiPathCommunity
 
PDF
Productivity Management Software | Workstatus
Lovely Baghel
 
PPTX
Earn Agentblazer Status with Slack Community Patna.pptx
SanjeetMishra29
 
PPTX
UI5Con 2025 - Get to Know Your UI5 Tooling
Wouter Lemaire
 
PDF
Human-centred design in online workplace learning and relationship to engagem...
Tracy Tang
 
PPTX
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
PDF
Empowering Cloud Providers with Apache CloudStack and Stackbill
ShapeBlue
 
PDF
Market Wrap for 18th July 2025 by CIFDAQ
CIFDAQ
 
PPTX
Darren Mills The Migration Modernization Balancing Act: Navigating Risks and...
AWS Chicago
 
PDF
visibel.ai Company Profile – Real-Time AI Solution for CCTV
visibelaiproject
 
PDF
UiPath vs Other Automation Tools Meeting Presentation.pdf
Tracy Dixon
 
PPTX
Lecture 5 - Agentic AI and model context protocol.pptx
Dr. LAM Yat-fai (林日辉)
 
PPTX
TYPES OF COMMUNICATION Presentation of ICT
JulieBinwag
 
PPTX
UI5Con 2025 - Beyond UI5 Controls with the Rise of Web Components
Wouter Lemaire
 
PPTX
Extensions Framework (XaaS) - Enabling Orchestrate Anything
ShapeBlue
 
Upskill to Agentic Automation 2025 - Kickoff Meeting
DianaGray10
 
2025-07-15 EMEA Volledig Inzicht Dutch Webinar
ThousandEyes
 
CIFDAQ Market Insight for 14th July 2025
CIFDAQ
 
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
Arcee AI - building and working with small language models (06/25)
Julien SIMON
 
HR agent at Mediq: Lessons learned on Agent Builder & Maestro by Tacstone Tec...
UiPathCommunity
 
Productivity Management Software | Workstatus
Lovely Baghel
 
Earn Agentblazer Status with Slack Community Patna.pptx
SanjeetMishra29
 
UI5Con 2025 - Get to Know Your UI5 Tooling
Wouter Lemaire
 
Human-centred design in online workplace learning and relationship to engagem...
Tracy Tang
 
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
Empowering Cloud Providers with Apache CloudStack and Stackbill
ShapeBlue
 
Market Wrap for 18th July 2025 by CIFDAQ
CIFDAQ
 
Darren Mills The Migration Modernization Balancing Act: Navigating Risks and...
AWS Chicago
 
visibel.ai Company Profile – Real-Time AI Solution for CCTV
visibelaiproject
 
UiPath vs Other Automation Tools Meeting Presentation.pdf
Tracy Dixon
 
Lecture 5 - Agentic AI and model context protocol.pptx
Dr. LAM Yat-fai (林日辉)
 
TYPES OF COMMUNICATION Presentation of ICT
JulieBinwag
 
UI5Con 2025 - Beyond UI5 Controls with the Rise of Web Components
Wouter Lemaire
 
Extensions Framework (XaaS) - Enabling Orchestrate Anything
ShapeBlue
 
Ad

EchoSign E-Signature API Guide

  • 1. EchoSign API Guide This document provides an overview of how to use the EchoSign API in common integration scenarios. Table of Contents Sending a document for Signature ........................................................................................................... 2 Checking the status of a document ...................................................................................................... 2 Retrieving the final signed document................................................................................................... 3 Signing Widgets ....................................................................................................................................... 4 Checking the status of a document signed through a widget................................................................ 4 1 EchoSign API Guide (rev1 - October 11, 2010) Copyright © EchoSign Inc. 2005-2010
  • 2. Sending a document for Signature To send a document out for signature through the EchoSign API, call the sendDocument method. This method has 3 parameters that you will need to pass, apiKey, senderInfo and documentCreationInfo. For more information on EchoSign API methods, please refer to the API documentation. After you send a document, you can retrieve up-to-date status of the document either by polling, or when EchoSign notifies you the status of the document has changed. Checking the status of a document There are two ways you can retrieve up-to-date status of the document: by polling, or by calling the getDocumentInfo method when EchoSign notifies you the status of the document has changed. 1. Polling You can call the getDocumentInfo method periodically to check the status of your documents. The upside of polling is that it is more reliable in the event that callback fails since your system is down, scheduled maintenance, lack of connectivity, etc. The downside is that you have to create a scheduling mechanism to query the status of all documents that were not yet signed, waste time and resources checking to see if a document status has changed instead of only retrieving the updated status when you know it has changed. If you choose to use polling, we recommend you will have different policies based on document “age” - ie. reducing the frequency of polling if the document was not signed after X days. 2. Push Notifications Push notifications allow your application to retrieve up-to-date status after EchoSign notifies you the status of a document had changed. In the CallbackInfo object used in DocumentCreationInfo, you can set the signedDocumentUrl parameter. This is the URL to which EchoSign will call your system using HTTP GET every time the status of the document has changed. You can then use getDocumentInfo to get the latest status of the 2 EchoSign API Guide (rev1 - October 11, 2010) Copyright © EchoSign Inc. 2005-2010
  • 3. document. You probably have a unique identifier on your end for each document, and some sort of table that maps that to the documentKey you get as an output from sendDocument. Pass your unique identifier as a parameter in the URL, so that when EchoSign pings you to notify the document status has changed, you will know which document ID on your end we are talking about, and subsequently which documentKey. Then, call the getDocumentInfo method and provide that documentKey, and EchoSign will return the updated status of the document. In most cases, when the document status is “Signed”, you would like to retrieve the signed document PDF using the getLatestDocument method and store it in your system. The HTTP GET method of retrieving up-to-date document status is not configured by default. Please contact EchoSign if you wish to use this option. Retrieving the final signed document There are two ways you can retrieve the final signed document: calling getLastestDocument after the document has been signed, or by setting the signedDocumentUrl where EchoSign will do a HTTP PUT with the final signed PDF if you aren’t using the callback mechanism to notify you when document status has changed. 1. Call getLatestDocument after the document has been signed If you’ve determined the document has been signed, by calling the getDocumentInfo method for example, you can then call the getLatestDocument method to retrieve the final signed PDF. 2. Setting the signedDocumentUrl where EchoSign will do a HTTP PUT with the final signed PDF In the CallbackInfo object used in DocumentCreationInfo, you can set the signedDocumentUrl parameter. This is the URL to which EchoSign will do a HTTP PUT with the final signed PDF. Note: HTTP PUT is the default behavior on the signedDocumentUrl, but if you configure HTTP GET to check the status of a document, this option for receiving the final signed document is no 3 EchoSign API Guide (rev1 - October 11, 2010) Copyright © EchoSign Inc. 2005-2010
  • 4. longer available. Signing Widgets Checking the status of a document signed through a widget A widget is a template. Every document signed through a widget is a separate instance of that widget, and EchoSign creates a unique documentKey for every such document. A good way to think about the relationship of the widget and the documents signed through it is a parent-child relationship. Therefore, the status of the “parent” widget itself does not reflect the status of its children. Using this terminology, the documentKey of the widget is the parent documentKey. The documentKeys for every document signed through the widget are the child documentKeys. The child documentKeys are what you need to use when checking the status of a specific document signed through a widget. There are two ways you can find the child documentKeys: by using the getFormData method, or by using the completion URL. 1. Finding the child documentKey using the getFormData method Call the getFormData method and pass it the documentKey of the parent widget. The output will include the data in comma-separated value (CSV) format. The first line include column header names and then a line for each signer who signed the parent widget. The document keys of all child widgets will be in the first column, under “EchoSign Transaction number”. See example below: EchoSign transaction number, Agreement name, signed, email 12ABC3D456E7F,test widget,2/5/10 09:21,[email protected] Notice there may be multiple child agreements to the same parent Widget - each with a different document key. Each child document can be signed by one or two signers (the original signer and potentially by the sender), resulting in multiple rows in the CSV. See example below: 4 EchoSign API Guide (rev1 - October 11, 2010) Copyright © EchoSign Inc. 2005-2010
  • 5. EchoSign transaction number, Agreement name, signed, email 12ABC3D456E7F,test widget,2/5/10 09:21,[email protected] 98ZYX7W654V3U,test widget,2/6/10 11:56,[email protected] If the child document is signed by two signers, there will be two rows in the CSV with the same document key. See example below: EchoSign transaction number, Agreement name, signed, email 12ABC3D456E7F,test widget,2/5/10 09:21,[email protected] 98ZYX7W654V3U,test widget,2/6/10 11:56,[email protected] 12ABC3D456E7F,test widget,2/6/10 13:37,[email protected] 2. Finding the child documentKeys using the completion URL If the widget is part of a multi-step process, you can tell EchoSign where to send the user after they’ve completed the widget by setting the URL parameter in the WidgetCompletionInfo object. The child documentKey will be appended as a parameter to that URL. Now that you know the child documentKey, you can check the status of the document when EchoSign notifies you the status of the document has changed, or by polling. Please refer to the “Checking the status of a document” section for instructions. 5 EchoSign API Guide (rev1 - October 11, 2010) Copyright © EchoSign Inc. 2005-2010