Introduction
This documentation will help you understand how you can interact with GEM-BOOKS and GEM-CAR by using our REST API. With this API, you will be able to get, update and add data to the system.
Documentation
The API is organized around the REST standard. It is the recommended way to interact with your data.
To begin the integration, you should start by understanding the Authentification
process in the menu from the same name.
All endpoints available are listed in the Resources
menu.
The objects returned from the endpoint are listed in the Objects
menu.
JSON returned
Every call to an endpoint will return a JSON object.
The object will always contain the success
value which will either be false
or true
.
If success
is true
, the data will be contained in the data
value.
If success
is false
, the error will be contained in the error
value.
Last updated