PHPackages                             fitboxmedia/konnektive-api - 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. fitboxmedia/konnektive-api

ActiveLibrary

fitboxmedia/konnektive-api
==========================

A PHP implementation of the Konnektive CRM v2 API

2.0(7y ago)4629↓100%1MITPHPPHP &gt;=7.1.3

Since Jan 19Pushed 7y ago2 watchersCompare

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

READMEChangelog (2)Dependencies (6)Versions (7)Used By (0)

Konnektive CRM API Integration
==============================

[](#konnektive-crm-api-integration)

[![Latest Stable Version](https://camo.githubusercontent.com/6d8d57d8c3032cee1dc50945f8fde7da628e8532d1867a68af4b0e349e2e1cb3/68747470733a2f2f706f7365722e707567782e6f72672f666974626f786d656469612f6b6f6e6e656b746976652d6170692f762f737461626c65)](https://packagist.org/packages/fitboxmedia/konnektive-api)[![Latest Unstable Version](https://camo.githubusercontent.com/adc89840347a6ef7316d6c51c38141439f25ad6ceda662e1a0c04dfa401f1a15/68747470733a2f2f706f7365722e707567782e6f72672f666974626f786d656469612f6b6f6e6e656b746976652d6170692f762f756e737461626c65)](https://packagist.org/packages/fitboxmedia/konnektive-api)[![Total Downloads](https://camo.githubusercontent.com/a7c060e2611aa067e97f829bfd33ec7c4748553bb9c602e8c3e4d7cfd9797810/68747470733a2f2f706f7365722e707567782e6f72672f666974626f786d656469612f6b6f6e6e656b746976652d6170692f646f776e6c6f616473)](https://packagist.org/packages/fitboxmedia/konnektive-api)[![License](https://camo.githubusercontent.com/3a22088662ef124548cf9ea14b7004ffe36e45636de0ee73077bc331eea3ff4a/68747470733a2f2f706f7365722e707567782e6f72672f666974626f786d656469612f6b6f6e6e656b746976652d6170692f6c6963656e7365)](https://packagist.org/packages/fitboxmedia/konnektive-api)

---

What It Is
----------

[](#what-it-is)

A simple API integration that allows developers to interact with Konnektive CRM's v2 API. All methods are implemented and fully validated as of September 24, 2018

Licensed under the MIT license:

Why Use This
------------

[](#why-use-this)

When processing transactions and customer data through offers, marketers can benefit substantially from the use of a well tested and consistent 3rd party API integration.

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

[](#installation)

Use `composer require fitboxmedia/konnektive-api` or add it manually to `composer.json` (See latest version in badges).

Getting Started
---------------

[](#getting-started)

`Konnektive` crm integration can be implemented easily by simply filling up one of the request classes and handing it off to the dispatcher for processing like so:

```
use Konnektive\Dispatcher;

class OfferProcessor {
    public function addCustomerNote(){
        $dispatcher = new Dispatcher();
        /**
        * @var $request \Konnektive\Request\Customer\AddCustomerNoteRequest;
        */
        $request = new AddCustomerNoteRequest();
        $request->loginId = "SomeValidStringForID";
        $request->password = "SomeValidPassword";
        $request->customerId = "123123";
        $request->message = "TestMessage";
        /**
        * @var $response \Konnektive\Response\Response;
        */
        $response = $dispatcher->handle($request);
        if($response->isSuccessful()){
            //Do the thing.
        }
    }
}
```

> **Note:** Custom handlers can be created and passed to Dispatcher during construction.

Custom Handlers
---------------

[](#custom-handlers)

If you would like to use a custom handler for the dispatch of your request, you can create a new Handler class that implements the IHandler interface:

```
use Konnektive\Contracts\IHandler;

class CustomHandler implements IHandler
{
    /**
    * @var $request \Konnektive\Request\Request
    * @return \Konnektive\Response\Response
    */
    public function handle(Request $request){
        //Handle that request
        return new Response(/* Some response data from cUrl */);
    }
}
```

The new `CustomHandler` can be passed into the dispatcher at construction or later:

```
$dispatcher = new Dispatcher(new CustomHandler());
////
$dispatcher->setHandler(new CustomHandler());
```

Validation
----------

[](#validation)

All requests will be validated prior to executing the handler. All validation failures are provided through the `\Illuminate\Validation\ValidationException`. These exceptions are not caught and must be handled in your own code! Validation can also be done prior to dispatch by calling `validate()` on the request object:

```
/**
* @var $request \Konnektive\Request\Customer\AddCustomerNoteRequest;
*/
$request = new AddCustomerNoteRequest();
$request->loginId = "SomeValidStringForID";
$request->message = "TestMessage";
try {
    $request->validate();
} catch(ValidationException $ex){
    //Fails for customerId and password
}
```

Requirements
------------

[](#requirements)

- PHP 7.0+

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~123 days

Recently: every ~111 days

Total

6

Last Release

2778d ago

Major Versions

0.7 → 1.32018-02-28

1.9.4 → 2.02018-10-01

PHP version history (3 changes)0.5.5PHP &gt;=5.6.4

1.9.4PHP &gt;=7.0

2.0PHP &gt;=7.1.3

### Community

Maintainers

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

---

Top Contributors

[![progjp](https://avatars.githubusercontent.com/u/2581635?v=4)](https://github.com/progjp "progjp (2 commits)")[![AmbulantRex](https://avatars.githubusercontent.com/u/21176662?v=4)](https://github.com/AmbulantRex "AmbulantRex (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fitboxmedia-konnektive-api/health.svg)

```
[![Health](https://phpackages.com/badges/fitboxmedia-konnektive-api/health.svg)](https://phpackages.com/packages/fitboxmedia-konnektive-api)
```

###  Alternatives

[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[proengsoft/laravel-jsvalidation

Validate forms transparently with Javascript reusing your Laravel Validation Rules, Messages, and FormRequest

1.1k2.3M49](/packages/proengsoft-laravel-jsvalidation)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

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