encjacom / ipresso_api
Official PHP library for iPresso REST API
v3.7.0
2026-03-04 13:59 UTC
Requires
- php: >=8.1
- ext-curl: *
- ext-json: *
- phpdocumentor/reflection-docblock: *
- symfony/property-access: >=4.4
- symfony/property-info: >=4.4
- symfony/serializer: >=4.4
Requires (Dev)
- phpunit/phpunit: ^9.5
- vimeo/psalm: ^5.0
This package is not auto-updated.
Last update: 2026-06-24 16:03:39 UTC
README
Documentation
Installation
Install the latest version with
$ composer require encjacom/ipresso_api
Examples
Authentication
<?php
$ipresso = new iPresso();
$ipresso->setLogin('login');
$ipresso->setPassword('password');
$ipresso->setCustomerKey('customerKey');
$ipresso->setUrl('https://yourdomain.ipresso.pl');
$token = $ipresso->getToken();
$ipresso->setToken($token->data);
// Optionally set a timeout in seconds
$ipresso->setTimeout(10);
Other examples
- Contact Actions
- Contact Activities
- Consents
- Contact and Customer Attributes
- Campaigns
- Categories
- Contacts
- Anonymous Contacts
- NPS
- Origins
- Scenarios
- Search
- Segmentations
- Tags
- Types
- Websites
About
Requirements
- iPresso REST API Client works with PHP 8.1 or above.
Submitting bugs and feature requests
Bugs and feature request are tracked on GitHub