Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jongotlin/ekopost


https://github.com/jongotlin/ekopost

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

        

# Ekopost
API wrapper for Ekopost

## Install with composer
`composer require jongotlin/ekopost`

## Example
```php
$ekopost = new \JGI\Ekopost\Ekopost(new \GuzzleHttp\Client(), $apiKey, false);
$campaign = new \JGI\Ekopost\Model\Campaign();

$campaign = $ekopost->campaigns()->create($campaign);

echo $campaign->getId();

```