mnib/urgentcargus-php

PHP Wrapper for the UrgentCargus API

1 2017-09-12 23:11 UTC

This package is not auto-updated.

Last update: 2024-05-14 02:30:07 UTC


README

The API is RESTful JSON over HTTP using GuzzleHttp as a HTTP client.

Usage Examples

$client = new \MNIB\UrgentCargus\Client($apiKey, $apiUri);
...
$token = $client->getToken('username', 'password');
...
$result = $client->get('PickupLocations', [], $token);