PHPackages                             qadeersahmed/vtiger-restapi-php - 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. qadeersahmed/vtiger-restapi-php

ActiveLibrary[API Development](/categories/api)

qadeersahmed/vtiger-restapi-php
===============================

Vtiger REST API client for PHP

V1.1.5(3y ago)129[1 issues](https://github.com/qadeersahmed/vtiger-restapi-php/issues)MITPHP

Since Nov 17Pushed 3y ago1 watchersCompare

[ Source](https://github.com/qadeersahmed/vtiger-restapi-php)[ Packagist](https://packagist.org/packages/qadeersahmed/vtiger-restapi-php)[ RSS](/packages/qadeersahmed-vtiger-restapi-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (2)Versions (9)Used By (0)

Vtiger REST API client for PHP

#### Installation

[](#installation)

```
composer require qadeersahmed/vtiger-restapi-php
```

#### Usage

[](#usage)

```
require 'vendor/autoload.php';

$vtiger = new vtiger('VTIGER_URL', 'VTIGER_USERNAME', 'VTIGER_ACCESSKEY');
```

##### Create

[](#create)

```
$params      = [
    'assigned_user_id'         => '1',
    'subject'                  => 'Test',
    'quotestage'               => 'Created',
    'productid'                => '14x3',
    'description'              => 'Test Description',
    'hdnTaxType'               => 'group', // group or individual taxes are obtained from the application
    'LineItems'                => [
        '0' => [
            'productid'        => '14x3',
            'sequence_no'      => '1',
            'quantity'         => '1.000',
            'listprice'        => '500.00',
            'comment'          => 'sample comment product',
        ],

    ],
];

$result = $vtiger->create($params, 'Quotes');
```

#### Update

[](#update)

```
$params = ['id' => '12x3654', 'lastname' => 'Test Lead', 'email' => 'test@test.com', 'assigned_user_id' => '19x1'];
$result = $vtiger->update($params);
```

#### Retrieve

[](#retrieve)

```
$result = $vtiger->retrieve('5x3679');
```

#### Revise

[](#revise)

```
$params = ['id' => '12x3653', 'email' => 'test2@test.com', 'assigned_user_id' => '19x1'];
$result = $vtiger->revise($params);
```

#### Describe

[](#describe)

```
$result = $vtiger->describe('Contacts');
```

#### Query

[](#query)

```
$params = ['email' => 'test2@test.com'];
$select = ['mobile'];

$result = $vtiger->query('Contacts', $params, $select);
```

#### ListTypes

[](#listtypes)

```
$result = $vtiger->listTypes();
```

#### RetrieveRelated

[](#retrieverelated)

```
$result = $vtiger->retrieveRelated('12x3653', 'Activities', 'Calendar');
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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 ~1 days

Total

8

Last Release

1263d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/97054092f7c2563c9e9a357e736b75043ad5fa942969d39faf3cc1b7bb045113?d=identicon)[qadeersahmed](/maintainers/qadeersahmed)

---

Top Contributors

[![qadeersahmed](https://avatars.githubusercontent.com/u/10668308?v=4)](https://github.com/qadeersahmed "qadeersahmed (9 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/qadeersahmed-vtiger-restapi-php/health.svg)

```
[![Health](https://phpackages.com/badges/qadeersahmed-vtiger-restapi-php/health.svg)](https://phpackages.com/packages/qadeersahmed-vtiger-restapi-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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