PHPackages                             paysera/lib-wallet-transfer-rest-client - 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. [Payment Processing](/categories/payments)
4. /
5. paysera/lib-wallet-transfer-rest-client

ActiveLibrary[Payment Processing](/categories/payments)

paysera/lib-wallet-transfer-rest-client
=======================================

PHP REST client for Paysera.com Wallet Transfers

0.3.0(6y ago)4184.8k↓24.8%4[1 issues](https://github.com/paysera/lib-wallet-transfer-rest-client/issues)2PHPPHP &gt;=5.5

Since Apr 11Pushed 6y ago9 watchersCompare

[ Source](https://github.com/paysera/lib-wallet-transfer-rest-client)[ Packagist](https://packagist.org/packages/paysera/lib-wallet-transfer-rest-client)[ RSS](/packages/paysera-lib-wallet-transfer-rest-client/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (2)Versions (8)Used By (2)

paysera-transfers-client
------------------------

[](#paysera-transfers-client)

Provides methods to manipulate `Transfers` API. It automatically authenticates all requests and maps required data structure for you.

#### Usage

[](#usage)

This library provides `ClientFactory` class, which you should use to get the API client itself:

```
use Paysera\Client\TransfersClient\ClientFactory;

$clientFactory = new ClientFactory([
    'base_url' => 'https://wallet.paysera.com/transfer/rest/v1/', // optional, in case you need a custom one.
    'basic' => [                                        // use this, it API requires Basic authentication.
        'username' => 'username',
        'password' => 'password',
    ],
    'oauth' => [                                        // use this, it API requires OAuth v2 authentication.
        'token' => [
            'access_token' => 'my-access-token',
            'refresh_token' => 'my-refresh-token',
        ],
    ],
    // other configuration options, if needed
]);

$transfersClient = $clientFactory->getTransfersClient();
```

Please use only one authentication mechanism, provided by `Paysera`.

Now, that you have instance of `TransfersClient`, you can use following methods

### Methods

[](#methods)

It reserves funds for transfer and makes it "reserved". It's enough for transfer to be processed. If there are not enough funds, any limits are reached etc., transfer will be still "new" and no action will take place. Returns error if no funds available.

```
use Paysera\Client\TransfersClient\Entity as Entities;

$transferRegistrationParameters = new Entities\TransferRegistrationParameters();

$transferRegistrationParameters->setConvertCurrency($convertCurrency);
$transferRegistrationParameters->setUserIp($userIp);

$result = $transfersClient->reserveTransfer($id, $transferRegistrationParameters);
```

---

Provide password for transfer with status `waiting_password`. If operation is successful, transfer status becomes `done`. Available only for internal transfers. Returns error if password provided is invalid.

```
use Paysera\Client\TransfersClient\Entity as Entities;

$transferPassword = new Entities\TransferPassword();

$transferPassword->setValue($value);

$result = $transfersClient->provideTransferPassword($id, $transferPassword);
```

---

Make transfer visible in frontend for signing. If currency convert operations are related to transfer, they are done when transfer becomes `reserved`. If there are expectations in currency convert requests, transfer becomes `failed` together with related conversion request(s) if those expectations fails. This only makes transfer "reserved", so it's visible in our Web UI for signing

```
use Paysera\Client\TransfersClient\Entity as Entities;

$transferRegistrationParameters = new Entities\TransferRegistrationParameters();

$transferRegistrationParameters->setConvertCurrency($convertCurrency);
$transferRegistrationParameters->setUserIp($userIp);

$result = $transfersClient->registerTransfer($id, $transferRegistrationParameters);
```

---

Signs the transfer

```
use Paysera\Client\TransfersClient\Entity as Entities;

$transferRegistrationParameters = new Entities\TransferRegistrationParameters();

$transferRegistrationParameters->setConvertCurrency($convertCurrency);
$transferRegistrationParameters->setUserIp($userIp);

$result = $transfersClient->signTransfer($id, $transferRegistrationParameters);
```

---

Get transfer.

```
$result = $transfersClient->getTransfer($id);
```

---

Revoke transfer.

```
$result = $transfersClient->deleteTransfer($id);
```

---

Create transfer in the system. Created transfer is invisible and will be deleted if no more actions are performed.

```
use Paysera\Client\TransfersClient\Entity as Entities;

$transferInput = new Entities\TransferInput();

$transferInput->setAmount($amount);
$transferInput->setBeneficiary($beneficiary);
$transferInput->setPayer($payer);
$transferInput->setFinalBeneficiary($finalBeneficiary);
$transferInput->setPerformAt($performAt);
$transferInput->setChargeType($chargeType);
$transferInput->setUrgency($urgency);
$transferInput->setNotifications($notifications);
$transferInput->setPurpose($purpose);
$transferInput->setPassword($password);
$transferInput->setCancelable($cancelable);
$transferInput->setAutoCurrencyConvert($autoCurrencyConvert);
$transferInput->setAutoChargeRelatedCard($autoChargeRelatedCard);
$transferInput->setAutoProcessToDone($autoProcessToDone);
$transferInput->setReserveUntil($reserveUntil);
$transferInput->setCallback($callback);

$result = $transfersClient->createTransfer($transferInput);
```

---

Standard SQL-style Result filtering

```
use Paysera\Client\TransfersClient\Entity as Entities;

$transfersFilter = new Entities\TransfersFilter();

$transfersFilter->setCreatedDateFrom($createdDateFrom);
$transfersFilter->setCreatedDateTo($createdDateTo);
$transfersFilter->setCreditAccountNumber($creditAccountNumber);
$transfersFilter->setDebitAccountNumber($debitAccountNumber);
$transfersFilter->setStatuses($statuses);

$result = $transfersClient->getTransfers($transfersFilter);
```

---

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity39

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~163 days

Recently: every ~199 days

Total

7

Last Release

2392d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9d385187c2b529d5c1189dfc3763972f76738d24293593ff3db876fff82321db?d=identicon)[paysera.com](/maintainers/paysera.com)

---

Top Contributors

[![vbartusevicius](https://avatars.githubusercontent.com/u/7325630?v=4)](https://github.com/vbartusevicius "vbartusevicius (3 commits)")

### Embed Badge

![Health badge](/badges/paysera-lib-wallet-transfer-rest-client/health.svg)

```
[![Health](https://phpackages.com/badges/paysera-lib-wallet-transfer-rest-client/health.svg)](https://phpackages.com/packages/paysera-lib-wallet-transfer-rest-client)
```

###  Alternatives

[mezzio/mezzio

PSR-15 Middleware Microframework

3923.8M126](/packages/mezzio-mezzio)[bitrix24/b24phpsdk

An official PHP library for the Bitrix24 REST API

10244.2k5](/packages/bitrix24-b24phpsdk)[sunrise/http-router

A powerful solution as the foundation of your project.

17451.6k10](/packages/sunrise-http-router)[superfaktura/apiclient

Api client for SuperFaktura | online invoicing tool

20143.8k](/packages/superfaktura-apiclient)[msilabs/bkash

bKash Payment Gateway API for Laravel Framework.

181.2k](/packages/msilabs-bkash)[binkode/laravel-paystack

A description for laravel-paystack.

112.1k](/packages/binkode-laravel-paystack)

PHPackages © 2026

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