2017 © Pedro Peláez
 

library echosign-api-php

Adobe EchoSign PHP Api Implementation

image

danielsan/echosign-api-php

Adobe EchoSign PHP Api Implementation

  • Friday, August 15, 2014
  • by danielsan
  • Repository
  • 1 Watchers
  • 1 Stars
  • 1,632 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 15 Forks
  • 0 Open issues
  • 2 Versions
  • 28 % Grown

The README.md

Adobe EchoSign PHP API

This PHP library wraps Adobe's EchoSign API, currently at Version 15. The library closely follows the documentation at https://secure.echosign.com/public/docs/EchoSignDocumentService15, (*1)

Requirements

  • PHP 5.3
  • SOAP module

Version 1.0.0

This is currently a development library, not fully tested for production use, (*2)

Instalation

composer require danielsan/echosign-api-php
Please provide a version constraint for the danielsan/echosign-api-php requirement: 1.0.0

Don't forget to include vendor/autoload.php to use it, (*3)

Usage

There are basic examples of all generally accessible methods in the examples folder. The EchoSign API has several methods that are only accessible by requesting special permission from the provider. Those methods are implemented in the wrapper, but examples are not provided., (*4)

Simple Document Send

$client = new SoapClient(EchoSign\API::getWSDL());
$api = new EchoSign\API($client, 'YOUR API KEY');

$file = EchoSign\Info\FileInfo::createFromFile('demo.pdf');

$document = new EchoSign\Info\DocumentCreationInfo('Test sendDocument', $file);

$recipients = new EchoSign\Info\RecipientInfo;
$recipients->addRecipient($recipient_email);

$document->setRecipients($recipients);

$result = $api->sendDocument($document);

Simple Embedded Widget Creation

$client = new SoapClient(EchoSign\API::getWSDL());
$api = new EchoSign\API($client, 'YOUR API KEY');

$file = EchoSign\Info\FileInfo::createFromFile('demo.pdf');

$widget = new EchoSign\Info\WidgetCreationInfo('Test createEmbeddedWidget', $file);

$result = $api->createEmbeddedWidget($widget);

The Versions

15/08 2014

dev-master

9999999-dev

Adobe EchoSign PHP Api Implementation

  Sources   Download

MIT

The Requires

  • php >=5.3
  • ext-soap *

 

by Daniel Santana

echosign

13/08 2014

v1.0.0

1.0.0.0

Adobe EchoSign PHP Api Implementation

  Sources   Download

MIT

The Requires

  • php >=5.3
  • ext-soap *

 

by Daniel Santana

echosign