https://github.com/jongotlin/ekopost
https://github.com/jongotlin/ekopost
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jongotlin/ekopost
- Owner: jongotlin
- Created: 2020-10-05T06:08:24.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-09T12:44:39.000Z (over 4 years ago)
- Last Synced: 2025-03-21T21:46:26.681Z (4 months ago)
- Language: PHP
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```