PHPackages                             forward-force/right-signature-api-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. forward-force/right-signature-api-sdk

ActiveLibrary[API Development](/categories/api)

forward-force/right-signature-api-sdk
=====================================

PHP Wrapper around RightSignature API

1.0.2(4y ago)06.2kMITPHPPHP ^7.4|^8.0

Since May 12Pushed 4y ago3 watchersCompare

[ Source](https://github.com/forward-force/rightsignature-php-sdk)[ Packagist](https://packagist.org/packages/forward-force/right-signature-api-sdk)[ RSS](/packages/forward-force-right-signature-api-sdk/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (5)Versions (4)Used By (0)

RightSignature API - PHP SDK
============================

[](#rightsignature-api---php-sdk)

Installation
------------

[](#installation)

Install via composer as follows:

```
composer require forward-force/rightSignature-api-sdk

```

Usage
-----

[](#usage)

### Authentication

[](#authentication)

In order to authenticate, you need to pass the *PRIVATE API TOKEN* like so:

```
$rightSignature = new RightSignature($token); //pv_deec47538d80245234a66e1d14d38be81

```

### Examples

[](#examples)

Fetch all documents:

```
$rightSignature = new RightSignature($token);

try {
    $documents = $rightSignature->documents()->fetch();
    var_dump($documents);
} catch (GuzzleException $e) {
    var_dump($e->getMessage());
}
```

Get document by id:

```
$document = $rightSignature->documents()->getById('fcc2517e-c596-4d91-9f59-112a292eb643');
```

Clone template, prepare template (populate merge fields), and send off to signers:

```
$signer1 = ['name' => 'buyer_signer', 'signer_email' => 'foo@example.com', 'signer_name' => 'John Doe'];
$signer2 = ['name' => 'seller_signer', 'signer_email' => 'bar@example.com', 'signer_name' => 'Jane Smith'];

$document = $rightSignature->documents()
    ->addBodyParameter('roles', [$signer1, $signer2])
    ->addBodyParameter('reusable_template', [
        'roles' => [$signer1, $signer2]
    ])
    ->addBodyParameter("message", "Please sign this")
    ->addBodyParameter('name', 'Name 1')
    ->addMergeField('client_name', 'The Client')
    ->sendDocument('fcc2517e-c596-4d91-9f59-112a292eb643');
```

Get all reusable templates:

```
try {
    $documents = $rightSignature->documents()->fetchReusableTemplates();
    var_dump($documents);
} catch (GuzzleException $e) {
    var_dump($e->getMessage());
}
```

Get reusable template by id

```
$document = $rightSignature->documents()->getReusableTemplateById('fcc2517e-c596-4d91-9f59-112a292eb643');
```

Contributions
-------------

[](#contributions)

To run locally, you can use the docker container provided here. You can run it like so:

```
docker-compose up

```

There is auto-generated documentation as to how to run this library on local, please take a look at [phpdocker/README.md](phpdocker/README.md)

*If you find an issue, have a question, or a suggestion, please don't hesitate to open a github issue.*

### Acknowledgments

[](#acknowledgments)

Thank you to [phpdocker.io](https://phpdocker.io) for making getting PHP environments effortless!

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 56% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~160 days

Total

3

Last Release

1549d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c43db68a7e04c12abb3642479297b5080f47c3b436875c059ec278ec1655e78f?d=identicon)[teodortalov](/maintainers/teodortalov)

---

Top Contributors

[![teodortalov](https://avatars.githubusercontent.com/u/2781820?v=4)](https://github.com/teodortalov "teodortalov (14 commits)")[![isheo36](https://avatars.githubusercontent.com/u/15328424?v=4)](https://github.com/isheo36 "isheo36 (11 commits)")

---

Tags

apiforwardforcerightsignature

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/forward-force-right-signature-api-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/forward-force-right-signature-api-sdk/health.svg)](https://phpackages.com/packages/forward-force-right-signature-api-sdk)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.7k371.6k6](/packages/theodo-group-llphant)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.5M10](/packages/checkout-checkout-sdk-php)[clicksend/clicksend-php

301.6M11](/packages/clicksend-clicksend-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
