Projects
This page includes all endpoints available for the projects module of Logiciel Actif.
List all projects
GET
https://app.gem-books.com/api/projects
This endpoint allows you to get the list of your projects. The projects are returned sorted by creation date.
Query Parameters
page
integer
The number of the page you wish to see. Default is 1.
per_page
integer
The number of the desired result per page. Default is 20. Maximum values is 100.
Headers
Authentication
string
Bearer token.
Accept
string
Should be application/json
.
Retrieve a project
GET
https://app.gem-books.com/api/projects/:id
This endpoint allows you to get the details of the project.
Path Parameters
id
integer
The ID of the project to retrieve.
Headers
Authentication
string
Bearer token.
Accept
string
Should be application/json
.
Create a project
POST
https://app.gem-books.com/api/projects
This endpoint allows you to create a project. Returns the created project.
Headers
Authentication
string
Bearer token.
Content-Type
string
Should be application/json
.
Accept
string
Should be application/json
.
Request Body
name
string
Project name.
Update a project
PUT
https://app.gem-books.com/api/projects/:id
This endpoint allows you to update a specific project. Returns the updated project.
Path Parameters
id
integer
Project id to update
Headers
Authentication
string
Bearer token.
Content-Type
string
Should be application/json
.
Accept
string
Should be application/json
.
Last updated