PHPackages                             gkite13/vtiger-api-bundle - 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. gkite13/vtiger-api-bundle

ActiveSymfony-bundle[API Development](/categories/api)

gkite13/vtiger-api-bundle
=========================

v1.0.3(4y ago)026MITPHPPHP &gt;=7.4

Since Jan 13Pushed 4y ago1 watchersCompare

[ Source](https://github.com/gKite13/vtiger-api-bundle)[ Packagist](https://packagist.org/packages/gkite13/vtiger-api-bundle)[ RSS](/packages/gkite13-vtiger-api-bundle/feed)WikiDiscussions master Synced 1mo ago

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

VtigerApiBundle
===============

[](#vtigerapibundle)

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

[](#installation)

```
$ composer require gkite13/vtiger-api-bundle
```

Configuration
-------------

[](#configuration)

```
# config/packages/gkite13_vtiger_api.yaml
gkite13_vtiger_api:
    api:
        site_url: "http://your_crm_url"
        user: "user_name"
        access_key: "user_access_key"
```

For configure cache pool

```
# config/packages/cache
pools:
# ...
  my_cache_pool:
    adapter: cache.adapter.filesystem
```

```
# config/packages/gkite13_vtiger_api.yaml
gkite13_vtiger_api:
# ...
  cache:
    pool: my_cache_pool
```

Usage
-----

[](#usage)

### Query

[](#query)

```
$queryString = "SELECT * FROM ModuleName";
$result = $this->vtigerApi->query($queryString);
```

### Retrieve

[](#retrieve)

To retrieve a record, you need a vtiger\_ws\_entity id and entityId.

```
$leadId = "10x12345";
$result = $this->vtigerApi->retrieve($leadId);
```

### Create

[](#create)

```
$lead = new \stdClass();
$lead->property1 = 'test';
$lead->property2 = 12345;
$result = $this->vtigerApi->create('EntityType', $lead);
```

### Update

[](#update)

```
$leadId = "10x12345";
$lead = $this->vtigerApi->retrieve($leadId);
$lead->property1 = 'test2';
$lead->property2 = 123;
$result = $this->vtigerApi->update($lead);
```

### Delete

[](#delete)

```
$leadId = "10x12345";
$result = $this->vtigerApi->delete($leadId);
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

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

Total

4

Last Release

1547d ago

### Community

Maintainers

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

---

Tags

apiphpsymfony-bundlevtigercrm

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/gkite13-vtiger-api-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/gkite13-vtiger-api-bundle/health.svg)](https://phpackages.com/packages/gkite13-vtiger-api-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[sulu/headless-bundle

Bundle that provides controllers and services for using Sulu as headless content management system

55133.7k2](/packages/sulu-headless-bundle)

PHPackages © 2026

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