Search by

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

inserve-paul

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

Package info

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

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

Statistics

Installs: 549

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

0.1.5 2026-08-31 09:00 UTC

This package is auto-updated.

Last update: 2026-08-31 09:12:42 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);