inserve/td-synnex-stream-one-api-php

A PHP wrapper for the TD Synnex Stream One API (v3)

Maintainers

Package info

github.com/inserveit/td-synnex-stream-one-api-php

pkg:composer/inserve/td-synnex-stream-one-api-php

Statistics

Installs: 433

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

0.1.4 2026-04-09 12:35 UTC

This package is auto-updated.

Last update: 2026-04-09 12:36:40 UTC


README

PHP Version Require

Status

workflow Latest Stable Version Latest Unstable Version License

About

A PHP Wrapper for TD Synnex Stream One API

Installation

composer require inserve/td-synnex-stream-one-api-php

Usage example

<?php

use Inserve\StreamOneAPI\StreamOneAPIClient;

require 'vendor/autoload.php';

$api = new StreamOneAPIClient();
$accessToken = $api->refreshToken('refresh.token');

if (! $accessToken) {
    echo 'Failed to obtain new access token.';

    return;
}

$customers = $api->customer->list(123);