fighttheice/shipstation

ShipStation API Client


License
MIT

Documentation

Shipstation API

This is a PHP library that will consume that ShipStation API.

Installation

composer require fighttheice/shipstation

Basic Usage

It should be noted that you are expected to keep the application a singleton. If it is not I don't think it will hurt anything.

<?php

include ('vendor/autoload.php');

$app = new FightTheIce\ShipStation\Api\Application('apiKey','apiSecret','baseUrl');

$tagsEndpoint = new FightTheIce\ShipStation\Api\Endpoints\Accounts\ListAccountTags;

$app->dispatch($tagsEndpoint);