Yousign API client Documentation

Build status Test coverage

Yousign API client is a wrapper for the Yousign API v2 in PHP.

Its purpose is to use this API without having to write the HTTP calls yourself and to retrieve the returned data through an object model.

As all features are implemented, it aims to be a full-featured client.

use Yousign\YousignApi;

/*
 * token
 */
$token = '123456789';

$yousign = new YousignApi($token);

$users = $yousign->getUsers();

foreach ($users as $user) {
    echo $user->getId();
}