docplanner/vero-php

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v1.0.1) of this package.

Library for tracking users and event with Vero's communications platform

Installs: 100 329

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 11

Forks: 16

v1.0.1 2016-05-12 10:20 UTC

This package is not auto-updated.

Last update: 2023-07-28 14:28:10 UTC


README

Vero PHP client is using cURL on top on our Rest API. Here's how to use it:

$v = new Vero("YOUR_AUTH_TOKEN");

$v->identify("1234567890", "jeff@yourdomain.com", array('First name' => 'Jeff', 'Last name' => 'Kane'));
$v->update("1234567890", array('First name' => 'Jack', 'Last name' => 'Wollo', 'job_title' => 'Developer'));
$v->tags('1234567890', array('Blog reader'), array());

$v->track("Subscribe to service", array('id' => '1234567890'), array('Plan name' => 'XL Plan', 'Price' => 149));

$v->unsubscribe("1234567890");