PHPackages                             teleconcept/ivr-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. teleconcept/ivr-client

ActiveLibrary[Payment Processing](/categories/payments)

teleconcept/ivr-client
======================

Teleconcept IVR Payment Client

00PHP

Since Sep 15Pushed 5y ago1 watchersCompare

[ Source](https://github.com/TeleConcept-nl/ivr-client)[ Packagist](https://packagist.org/packages/teleconcept/ivr-client)[ RSS](/packages/teleconcept-ivr-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

\#Create And Check Per Minute Payment

```
//Start creation
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$request = new \Teleconcept\Ivr\Client\Request\Create\CreatePerMinutePayment($client);

$request
    ->setCountry('NLD')
    ->setIpAddress('192.168.0.1')
    ->setAdult(false)
    ->setReportUrl('https://private-607035-responsetesting.apiary-mock.com/report')
    ->setTariff('90')
    ->setDuration(120)
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135);

$response = $request->send();

echo $response->reference(); //string uuidv4
echo $response->payline(); //number to call
echo $response->pincode(); //pincode to enter

```

```
//Start check
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$checkRequest = new \Teleconcept\Ivr\Client\Request\Check\CheckPerMinutePayment($client);

$checkRequest
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->setTransactionReference('ae3f8e04-c9d1-431f-a879-f8d1b067e1da');

$response = $checkRequest->send();

echo $response->status(); //string representation of the status of the call

```

\#Create and Check Per Call Payment

```
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$request = new \Teleconcept\Ivr\Client\Request\Create\CreatePerCallPayment($client);

$request
    ->setCountry('NLD')
    ->setIpAddress('192.168.0.1')
    ->setAdult(false)
    ->setReportUrl('https://private-607035-responsetesting.apiary-mock.com/report')
    ->setTariff('90')
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135);

$response = $request->send();

echo $response->reference(); //string uuidv4
echo $response->payline(); //number to call
echo $response->pincode(); //pincode to enter

```

```
//Start check
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$checkRequest = new \Teleconcept\Ivr\Client\Request\Check\CheckPerCallPayment($client);

$checkRequest
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->setTransactionReference('ae3f8e04-c9d1-431f-a879-f8d1b067e1da');

$response = $checkRequest->send();

echo $response->status(); //string representation of the status of the call

```

\#Create and Check Per Usage Payment

```
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$request = new \Teleconcept\Ivr\Client\Request\Create\CreatePerUsagePayment($client);

$request
    ->setCountry('NLD')
    ->setIpAddress('192.168.0.1')
    ->setAdult(false)
    ->setReportUrl('https://private-607035-responsetesting.apiary-mock.com/report')
    ->setTariff('90')
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135);

$response = $request->send();

echo $response->reference(); //string uuidv4
echo $response->payline(); //number to call
echo $response->pincode(); //pincode to enter

```

```
//Start check
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$checkRequest = new \Teleconcept\Ivr\Client\Request\Check\CheckPerUsagePayment($client);

$checkRequest
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->setTransactionReference('ae3f8e04-c9d1-431f-a879-f8d1b067e1da');

$response = $checkRequest->send();

echo $response->status(); //string representation of the status of the call

```

\#Consume pincode output Payment

```
$client = new \Teleconcept\Ivr\Client\Client('https://ivr-api.teleconcept.nl');
$consumeRequest = new \Teleconcept\Ivr\Client\Request\Pincode\ConsumeRequest($client);

$consumeRequest
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->setPincode('123456');

$response = $consumeRequest->send();

echo $response->reference(); //uuid string of the payment you found

```

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/12224277?v=4)[TargetMedia](/maintainers/TargetMedia)[@targetmedia](https://github.com/targetmedia)

---

Top Contributors

[![steven-targetmedia](https://avatars.githubusercontent.com/u/68897484?v=4)](https://github.com/steven-targetmedia "steven-targetmedia (28 commits)")

### Embed Badge

![Health badge](/badges/teleconcept-ivr-client/health.svg)

```
[![Health](https://phpackages.com/badges/teleconcept-ivr-client/health.svg)](https://phpackages.com/packages/teleconcept-ivr-client)
```

###  Alternatives

[omnipay/paypal

PayPal gateway for Omnipay payment processing library

3156.8M53](/packages/omnipay-paypal)[eduardokum/laravel-boleto

Biblioteca com boletos para o laravel

626351.9k2](/packages/eduardokum-laravel-boleto)[tbbc/money-bundle

This is a Symfony bundle that integrates moneyphp/money library (Fowler pattern): https://github.com/moneyphp/money.

1961.9M](/packages/tbbc-money-bundle)[2checkout/2checkout-php

2Checkout PHP Library

83740.3k2](/packages/2checkout-2checkout-php)[smhg/sepa-qr-data

Generate QR code data for SEPA payments

61717.2k5](/packages/smhg-sepa-qr-data)[omnipay/dummy

Dummy driver for the Omnipay payment processing library

271.2M33](/packages/omnipay-dummy)

PHPackages © 2026

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