This library gives you a starting point for working with the simPRO RESTful API using PHP. It provides a means of authenticating, sending requests and receiving responses.
This readme assumes that you have read through each step of the Getting Started section of our API documentation. Instructions for how to use each of the grant types are detailed below.
composer require simpro/restclient-php
If your application authenticates using a client credentials grant, then see our client credentials example.
If your application authenticates using a resource owner credentials grant, then see our resource owner example.
If your application authenticates using an authorisation code grant, then see our authorisation code example.
If your application authenticates using an API Key, then see our API key example.
If your application authenticates using an implicit code grant, then you cannot perform this using PHP. Implicit grants are specifically designed for javascript clients. However, the workflow is similar to authorisation code grant. Please see our documentation for instructions.
Once you have your provider loaded, find an example of creating, reading, updating and deleting data here.
Feel free to ask us a question on our support forum if you are unable to get your application up and running using our API.