zack6849 / ship-station

A maintained fork of ship-station, a PHP wrapper for ShipStations REST API.

Home Page:https://packagist.org/packages/zack6849/ship-station

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ShipStation Api Wrapper for PHP

Install


composer require zack6849/ship-station

Docs


Using ShipStationApi

use MichaelB\ShipStation\ShipStationApi;

$apiKey = ''; // Your ShipStation Api Key
$apiSecret = ''; // Your ShipStation Api Secret
$options = []; // Options to be merged into the normal GuzzleHttp\Client options

// ShipStationApi Extends GuzzleHttp\Client
$shipstation = new ShipStationApi($apiKey, $apiSecret, $options);

/*
 * Get a service instance
 */
 
// Orders
$orderService = $shipstation->orders;

// Products
$products = $shipstation->products;

// ...

/*
 * Use the service
 */
$order = $orderService->getOrder('1234');

// All service methods return a GuzzleHttp\Psr7\Response object
$json = $order->getBody(); // { 'order': {...} }
$status = $order->getStatusCode(); // 200

About

A maintained fork of ship-station, a PHP wrapper for ShipStations REST API.

https://packagist.org/packages/zack6849/ship-station


Languages

Language:PHP 100.0%