tagmydoc/sage-accounting-sdk-php

Sage Accounting PHP SDK

0.1.0 2023-05-02 14:38 UTC

This package is auto-updated.

Last update: 2024-05-01 00:13:14 UTC


README

A beautiful, extendable API powered by Saloon.

Installation

composer require tagmydoc/sage-accounting-sdk-php

Usage

$client = new SageAccountingClient('CLIENT_ID', 'CLIENT_SECRET', route('services/sage'), ['readonly']);
$authenticator = AccessTokenAuthenticator::unserialize(get('sage:token')); // The get function is simply a placeholder for you to get the stored access token from your storage

if ($authenticator->hasExpired()) {
    $authenticator = $client->refreshAccessToken($authenticator);
    // Save the new access token in your storage
    // The save function is simply a placeholder for you to save the access token to your storage
    save('sage:token', $authenticator->serialize());
}

$client->authenticate($authenticator);

$request = CreateContactRequest::make();
$request->body()->add('contact', [
  'name' => 'John Smith'
]);

$response = $client->send($request);

$contactId = $response->json('id');

Credits

License

The MIT License (MIT). Please see License File for more information.