yopify/yo-php-sdk

Yo PHP SDK is the official SDK wrapper for the Yopify Yo API service

1.0.0 2016-10-15 07:15 UTC

This package is not auto-updated.

Last update: 2025-02-01 22:13:51 UTC


README

Yo PHP SDK is the official SDK wrapper for the Yo API service

Requirements

  • PHP Version 5.3.0+

Installation

Install the latest version with

$ composer require yopify/yo-php-sdk

Manual User Installation

Download src/Yo/Client.php and include the file in your PHP project.

Check out our examples in example/example.php, quick usage examples:

Basic Usage

Initialize Yo client via:

<?php
use Yopify\Yo\Client;
$yoClient = new Client();

$yoClient->authToken = 'YOUR-TOKEN-HERE'; // auth token can be found here: https://yopify.com/api/yo/settings#/api

// OR

$yoClient->setBasicAuth('me@mysite.com', 'secret'); // You can use basic auth also

#####To check authentication:

$isAuthenticated = $yoClient->ping(); // false if not authenticated, current timestamp if success

#####Get a single Event

$event = $yoClient->getEvent(EVENT_ID);

#####Get list of events

$events = $client->getEvents(PER_PAGE, PAGE_NO);

// Check for success
if (isset($events->meta)) {
    echo 'Current page: ', $events->meta->pagination->current_page, "\n";
    echo 'Total pages: ', $events->meta->pagination->total_pages, "\n";
    echo 'Page page: ', $events->meta->pagination->per_page, "\n";
    echo 'Total count: ', $events->meta->pagination->total, "\n";
}

#####Create new event

$event = new Yopify\Yo\YoEvent();
$event->event_type_id = '1';
$event->unique_id1 = '10';
$event->unique_id2 = '1';
$event->title = 'This awesome product';
$event->first_name = 'Jon';
$event->last_name = 'snow';
$event->city = 'New York';
$event->province = 'XXXX';
$event->country = 'USA';
$event->url = 'https://example.com';
$event->message_template = '[FIRST-NAME] from [COUNTRY] just purchased [TITLE-WITH-LINK]';
$yoEvent = $yoClient->createEvent($event);

#####Update an event

$yoEvent = $yoClient->getEvent(EVENT_ID);

if (isset($yoEvent->data)) {
    $yoEvent = $yoEvent->data;
    $yoEvent->province = "AAAA";

    $updatedEvent = $yoClient->updateEvent($yoEvent);
}

#####Delete an event:

$deletedEvent = $yoClient->deleteEvent(EVENT_ID);

Support

If you have questions, email us at yo@yopify.com.