invintus/invintus-api

INVINTUS API SDK for PHP - Use Invintus Public Web Services in your PHP project

v1.0 2017-01-14 05:51 UTC

This package is auto-updated.

Last update: 2024-08-29 04:19:56 UTC


README

INVINTUS API SDK for PHP - Use Invintus Web Service API's in your PHP project

Acceptable use of this software and Invintus Media Inc.'s API service detailed in the API documentation

To use this service, You must be an Invintus Platform client and be enrolled in an active payed account plan that supports API calls. To enroll in a service plan or to try out the Invintus Streaming Platform, contact info@invintus.com

install using composer

{
    "require": {
	        "invintus/invintus-api":"v1.0"
    }
}

usage example

public api

//instantiate Invintus class
$v3Call = new \Invintus\PublicAPI\Events();
//build call and target endpoint
$v3Data  = $v3Call
            ->setApiKey("yourKey")
            ->setClientID("yourClientID")
            ->setEventID("eventIDtobeQueried")
            ->getDetailed(); //returns full request reply as object 
//displays your call builders params sent to API
$callParams = $v3Call->showCallParamsJson();

To view a complete list of API methods, endpoints and their options, please visit https://invintus.api-docs.io/v2.5

CRUD actions are only accessible with a certified partner key. contact support@invintus.com if you are a certified partner and need an access token.