############################################################# ########################## NOTE ############################# ############################################################# ############ This is used in mic-sales ################# ############################################################# ############################################################# #############################################################
Ruby Gem to consume Adobe's EchoSign e-signature service - REST service v5
gem install echosign
The bulk of the API is on the Echosign::Client class
You can read Echosign's full API Documentation
It wouldn't hurt to read Adobe's Echosign API documentation
require 'echosign'
credentials = Echosign::Refresh.new(app_id, app_secret, refresh_token, grant_type)
client = Echosign::Client.new(credentials)
url_file_params = {
url: 'http://somedomain.com/contract.pdf',
mimeType: 'application/pdf',
name: 'contract.pdf'
}
file_info_params = {
documentURL: Echosign::UrlFileInfo.new(url_file_params)
}
recipient_params = {
role: 'SIGNER', email: '[email protected]'
}
agreement_info_params = {
fileInfos: [ Echosign::Fileinfo.new(file_info_params) ],
recipients: [ Echosign::Recipient.new(recipient_params)],
signatureFlow: "SENDER_SIGNS_LAST",
signatureType: "ESIGN",
name: "Rumplestiltskin Contract"
}
agreement = Echosign::Agreement.new(sender_id, sender_email, agreement_info)
agreement_id = client.create_agreement(agreement)
result = client.cancel_agreement(agreement_id, true, 'Because...blah blah.')
user_params = {
firstName: 'JohnQ',
lastName: 'Public',
email: '[email protected]',
password: 'kN12oK9p!3',
title: 'Hedge Wizard'
}
user = Echosign::User.new(user_params)
user_id = client.create_user(user)
tran_doc_id = client.create_transient_document(file_name, mime_type, File.new('myfile.pdf'))