unipile/unipile-php-sdk

v1.0.0 2023-10-17 12:47 UTC

This package is auto-updated.

Last update: 2024-04-17 14:31:59 UTC


README

The PHP SDK provides you tools to interact with Unipile’s API with ease. To have more informations about how Unipile’s API works and how to use it, please take a look at the following resources.

Unipile API guide

Unipile API reference

Installation

  composer require unipile/unipile-php-sdk

Usage

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

use Unipile\UnipileSDK;

$baseUri = 'https://apiXXX.unipile.com:XXX';
$token = 'XXXX';
$unipileSDK = new UnipileSDK($baseUri, $token);

$accounts = $unipileSDK->Account->list();