/evalanche-soap-api-connector

Official PHP client for Evalanche SOAP API

Primary LanguagePHPMIT LicenseMIT

EVALANCHE SOAP API CONNECTOR

Monthly Downloads License tests

Install

Via Composer

$ composer require scn/evalanche-soap-api-connector

Usage

General

First create a connection with the access credentials provided by SC-Networks.

require 'vendor/autoload.php';

$connection = \Scn\EvalancheSoapApiConnector\EvalancheConnection::create(
    'given host',
    'given username',
    'given password'
);

Then create the client of your choice e.g. FormClient

$statistic = $connection->createFormClient()->getStatistics(123, false);

Work with the results

$statistic->getImpressions()

Most of the methods will require/return structs which are defined and described in the struct repository.

Method Documentation

Can be found here.

Testing

$ composer test

License

The MIT License (MIT). Please see License File for more information.