2017 © Pedro PelĂĄez
 

library ongage-lib

This library is an implementation of the Ongage API

image

appdevelteleup/ongage-lib

This library is an implementation of the Ongage API

  • Monday, November 6, 2017
  • by teleup
  • Repository
  • 0 Watchers
  • 1 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

Ongage PHP Library

About

This Library is a PHP implementation of the Ongage Email Platform API., (*1)

Features

This library features an implementation of most of the Ongage Documented Endpoints and Methods, as well as un-documented, potentially unsupported, but also very helpful methods., (*2)

Currently implemented endpoints:, (*3)

"Campaign" Package * /api/mailings * /api/emails, (*4)

"Esp" Package (Unsupported, Undocumented by Ongage) * /api/account_addresses * /api/esp_connections * /api/esps, (*5)

"Lists" Package * /api/contacts * /api/lists/ * /api/segments * /api/list_fields (Unsupported, Undocumented by Ongage), (*6)

"Reports" Package * /api/reports, (*7)

Installation

Via Composer

Install composer in your project:, (*8)

    curl -s https://getcomposer.org/installer | php

Create a composer.json file in your project root:, (*9)

    {
        "require": {
            "appdevelteleup/ongage-lib": "0.1*"
        }
    }

Install via composer:, (*10)

    php composer.phar install

Add this line to your application’s code:, (*11)

    <?php
        require 'vendor/autoload.php';
    ?>

Usage

    get($list_id);

        // Send Request
        $results = $ongage->send($contacts);

        // Echo raw results
        print_r($results);
    ?>

The Versions

06/11 2017

dev-master

9999999-dev https://github.com/appdevelteleup/ongage-lib.git

This library is an implementation of the Ongage API

  Sources   Download

MIT

The Requires

 

ongage