dissolve / ship-station
A php wrapper for ship station's rest api
v1.5.0
2021-04-15 17:37 UTC
Requires
- guzzlehttp/guzzle: ~6|~7
Replaces
This package is not auto-updated.
Last update: 2024-11-08 10:43:47 UTC
README
Install
composer require dissolve/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