developers.esigngenie.comAPI Documentation eSign Genie

developers.esigngenie.com Profile

developers.esigngenie.com

Maindomain:esigngenie.com

Title:API Documentation eSign Genie

Description:With eSign Genie API you can create a folder of documents and send them for signature right from your own application To create a folder of documents from PDF files you can either provide publicly

Discover developers.esigngenie.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

developers.esigngenie.com Information

Website / Domain: developers.esigngenie.com
HomePage size:337.88 KB
Page Load Time:0.160885 Seconds
Website IP Address: 3.214.80.89
Isp Server: General Electric Company

developers.esigngenie.com Ip Information

Ip Country: United States
City Name: Fairfield
Latitude: 41.218349456787
Longitude: -73.251731872559

developers.esigngenie.com Keywords accounting

Keyword Count

developers.esigngenie.com Httpheader

Date: Sat, 22 Feb 2020 12:37:47 GMT
Content-Type: text/html;charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: AWSALB=bQRlZERujmJeFLZ+GgUq5nNIbC6kRyvRxrcq2scK9lYbfhNpnfETilhr4H/bQyJFOoYflBICh8pwUL4blEqtHAMNLad7hXdJFD/+cY1SCt1+mrFfaSA9gJ1wH0yR; Expires=Sat, 29 Feb 2020 12:37:47 GMT; Path=/, AWSALBCORS=bQRlZERujmJeFLZ+GgUq5nNIbC6kRyvRxrcq2scK9lYbfhNpnfETilhr4H/bQyJFOoYflBICh8pwUL4blEqtHAMNLad7hXdJFD/+cY1SCt1+mrFfaSA9gJ1wH0yR; Expires=Sat, 29 Feb 2020 12:37:47 GMT; Path=/; SameSite=None, JSESSIONID=228FE0B92323590BACE5F8885B71D4A6; Path=/; Secure; HttpOnly
Server: Apache-Coyote/1.1

developers.esigngenie.com Meta Info

content="text/html; charset=utf-8" http-equiv="Content-Type"/
name="viewport" content="width=device-width, initial-scale=1"

3.214.80.89 Domains

Domain WebSite Title

developers.esigngenie.com Similar Website

Domain WebSite Title
developers.esigngenie.comAPI Documentation eSign Genie
netgear-genie.software.informer.comNETGEAR Genie Download - NETGEAR genie makes getting the most out of your home network fun and easy
onsitetraining.atlasapitraining.comAPI Onsite Training for API 610, 570, 580, 653, 1169 - Atlas API Training
commercial.geniecompany.comGenie Company | Genie Garage Door Openers | Garage Openers
api2.bigoven.com500,000+ Recipe and Grocery List API | BigOven API
sms.cdyne.comSMS API, As Low As $0.0015, #1 Text Message API, Short Code - CDYNE
api.eventful.comEvents Feed, Concert & Event API - Eventful API
api.evdb.comEvents Feed, Concert & Event API - Eventful API
developer.yummly.comYummly | Recipe API & Food API
api.zeromq.orgZeroMQ API - 0MQ Api
developers.flipsnack.comAPI documentation - Flipsnack API
genie.warehouserack.comRack Genie
genielift.comHome | Genie
gogenielift.comGenie - A Terex Brand
ag.gs4947.comGenie® GS™-4047 Scissor Lift

developers.esigngenie.com Traffic Sources Chart

developers.esigngenie.com Alexa Rank History Chart

developers.esigngenie.com aleax

developers.esigngenie.com Html To Plain Text

-- Toggle navigation Getting Started About eSign Genie Creating a developer account General guidelines Authentication Generating access token Folders API Getting template info Getting all templates list for your account -- Creating a new folder from templates -- Creating a new folder from PDFs Creating embedded signing session Creating embedded sending session Sending Draft Folder by Folder Id Update Envelope Fields Update Envelope Custom Fields -- Get folder details Download folder files Download single document pdf Delete folder(s) Templates API Creating a new template from PDF Creating a new folder from templates Getting all templates list for your account Get template details Parties API Get email group details Creating a new email group Webhooks Webhook Events Webhook Security Webhook Channels Create Webhook Channel Get Webhook Channel Details Get all Webhook Channel Details Update Webhook Channel Activate Webhook Channel Deactivate Webhook Channel Delete Webhook Channel Users API Create New User Update User Delete User List All Users Account API Create New Account Cancel Account Reactivate Account Change Licences Change Plan Error Handling FAQ -- Change History Getting Started About eSign Genie eSign Genie is the #1 easiest and most collaborative contract management and esignature software with the most robust functionality amongst its peers. Key features include: Collaborative contracts and agreement building; template contract creation; esignature workflow to obtain esignature(s) from single, or multiple users; advanced bulk esignature solution with dashboard; notification receiving control; API for esignature integration with other software or websites and a lot more... For more information on eSign Genie Software, please contact us at info@esigngenie.com Create a Developer Account Activate the developer account with eSign Genie under the API tab in the settings menu. (This menu will only be visible after you have purchased the API service from eSign Genie). Fill in the form to obtain your API Key and API Secret under your API settings. This is how your API information will display: General Guidelines eSign Genie is an oAuth2 provider. Security implementation is based on the final version of "The OAuth 2.0 Authorization Framework". All requests must be made via HTTPS. Authentication Generating Access Token Client Credentials Access your eSign Genie account from your application Your website/application can generate an access token of grant_type: client_credentials as follows: POST https://www.esigngenie.com/esign/api/oauth2/access_token CONTENT TYPE application/x-www-form-URLencoded REQUEST Parameter Description grant_type This value should be client_credentials client_id Your API Key from the API menu under the Settings Tab client_secret Your API Secret from the API menu under the Settings Tab scope Please use read-write , in order to send documents RESPONSE { "access_token":"ACCESS_TOKEN", "token_type":"bearer", "expires_in":31536000 } Sample Code CURL PHP CURL C# Java curl https://www.esigngenie.com/esign/api/oauth2/access_token \ > -d "grant_type=client_credentials" \ > -d "client_id=CLIENT_ID" \ > -d "client_secret=CLIENT_SECRET" \ > -d "scope=read-write" \ > -H "Content-Type: application/x-www-form-urlencoded" \ > -X POST <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://www.esigngenie.com/esign/api/oauth2/access_token", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => "grant_type=client_credentials&client_id=CLIENT_ID&client_secret=CLIENT_SECRET&scope=read-write", CURLOPT_HTTPHEADER => array( "cache-control: no-cache", "content-type: application/x-www-form-urlencoded" ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; } var request = (HttpWebRequest)WebRequest.Create("https://www.esigngenie.com/esign/api/oauth2/access_token"); var postData = "grant_type=client_credentials" + "&client_id=" + CLIENT_ID + "&client_secret=" + CLIENT_SECRET + "&scope=read-write"; var data = Encoding.ASCII.GetBytes(postData); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; request.ContentLength = data.Length; using (var stream = request.GetRequestStream()) { stream.Write(data, 0, data.Length); } var response = (HttpWebResponse)request.GetResponse(); using (var streamReader = new StreamReader(response.GetResponseStream())) { var responseString = streamReader.ReadToEnd(); } URL url= new URL("https://www.esigngenie.com/esign/api/oauth2/access_token"); HttpURLConnection con= (HttpURLConnection) url.openConnection(); con.setDoOutput(true); con.setUseCaches(false); con.setRequestProperty("Content-Type","application/x-www-form-urlencoded"); String urlParameters = "grant_type=client_credentials&client_id= CLIENT_ID &client_secret= CLIENT_SECRET &scope=read-write"; DataOutputStream wr = new DataOutputStream(con.getOutputStream()); wr.writeBytes(urlParameters); if (con.getResponseCode() != HttpURLConnection.HTTP_OK) { throw new RuntimeException("Failed : HTTP error code : "+ con.getResponseCode()); } BufferedReader br = new BufferedReader(new InputStreamReader((con.getInputStream()))); String output; System.out.println("Output from Server .... \n"); while ((output = br.readLine()) != null) { System.out.println(output); } con.disconnect(); Now you can make calls to the eSign Genie API with this ACCESS_TOKEN. Please include ACCESS_TOKEN to request headers with every request as indicated. Authorization: Bearer ACCESS_TOKEN CURL curl https://www.esigngenie.com/esign/api/folders/createfolder \ > -i \ > -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ > -H "Content-Type: application/json" ... Document(s) Folder API All API requests start with https://www.esigngenie.com/esign/api/ . Get Template Info You can get information about a template with the following endpoint -- Create folder of documents from PDF files With eSign Genie API you can create a folder of documents and send them for signature right from your own application. To create a folder of documents from PDF files you can either provide publicly accessible URLs to PDF documents or pass PDF documents as multipart form data and other parameters about the recipient parties, etc. While creating the documents from PDF files you can define various fields like text field or signature field within the document using simple Text Tags . You can assign various properties for these fields like party responsible for filling the data etc. These Text Tags will then be converted to eSign Genie document fields. Or if you don't want to use Text Fields within the document, then you can also request to create an embedded document preparing session where you can manually drag and drop each field on the document itself without leaving your application. Preparing PDF documents with text tags To send a PDF document from your application for signature, you need to define the signature and other eSign Genie fields in the documents, and who is allowed to fill in the data. eSign Genie supports simple Text Tags. A Text Tag is a simple text block within your PDF document which defines the field type, the party who is responsible for it, and other field specific options. Quick Tip : When you apply Text Tags to the document, eSign Genie does not remove or replace the Text Tags text. You can hide codified Text Tags by using the same font color as the background of the document. So the Text Tags can be used by eSign Genie processes and it will not be visible on the document. Field Type: One of 'textfield', 'signfield', 'initialfield', 'datefield', 'checkboxfield' or short notations. Party Number (optional): the sequence number of the reci...

developers.esigngenie.com Whois

"domain_name": "ESIGNGENIE.COM", "registrar": "GoDaddy.com, LLC", "whois_server": "whois.godaddy.com", "referral_url": null, "updated_date": [ "2018-07-01 03:37:54", "2018-02-20 01:57:50" ], "creation_date": "2014-03-20 05:22:17", "expiration_date": "2022-03-20 05:22:17", "name_servers": [ "NS-1.AWSDNS-00.COM", "NS-1312.AWSDNS-36.ORG", "NS-1863.AWSDNS-40.CO.UK", "NS-595.AWSDNS-10.NET" ], "status": [ "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", "clientRenewProhibited https://icann.org/epp#clientRenewProhibited", "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", "clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited", "clientUpdateProhibited http://www.icann.org/epp#clientUpdateProhibited", "clientRenewProhibited http://www.icann.org/epp#clientRenewProhibited", "clientDeleteProhibited http://www.icann.org/epp#clientDeleteProhibited" ], "emails": [ "abuse@godaddy.com", "ESIGNGENIE.COM@domainsbyproxy.com" ], "dnssec": "unsigned", "name": "Registration Private", "org": "Domains By Proxy, LLC", "address": [ "DomainsByProxy.com", "14455 N. Hayden Road" ], "city": "Scottsdale", "state": "Arizona", "zipcode": "85260", "country": "US"