Reminders
This page includes all endpoints available for the reminders module of Logiciel Actif.
List all reminders
GET
https://app.gem-books.com/api/reminders
This endpoint allows you to get the list of your reminders. The resources are returned, sorted by code (A-Z).
Query Parameters
page
String
The number of page you wish to see. Default is 1.
per_page
String
The number of the desired result per page. Default is 20. Maximum is 100
Headers
Authentication*
String
Bearer token.
Accept*
String
Should be application/json
.
Retrieve a reminder
GET
https://app.gem-books.com/api/reminders
This endpoint allows you to get the details of a reminder.
Path Parameters
id*
String
The ID of the reminder to retrieve
Headers
Authentication*
String
Bearer token.
Accept*
String
Should be application/json
.
Create a reminder
POST
https://app.gem-books.com/api/reminders
This endpoint allows you to create a reminder. Returns the created reminder.
Headers
Authentication*
String
Bearer token.
Accept*
String
Should be application/json
.
Content-type
String
Should be application/json
Request Body
title*
String
Title of reminder
module*
enum
module to insert the reminder into, here are the options available : clients,providers,sales,attributes,bookings,purchases
moduleID*
String
ID of previous module (EX : client)
userID*
String
ID of user the reminder is set to
date*
String
Date of the reminder
closed
bool
1 if reminder is closed
labels
String
Labels on the reminder, comma separated
notes
String
Notes of the reminder
Update a reminder
PUT
https://app.gem-books.com/api/reminders
This endpoint allows you to update a specific reminder. Returns the updated reminder.
Path Parameters
id*
String
ID of resource to update
Headers
Authentication*
String
Bearer token.
Accept*
String
Should be application/json
.
Content-type
String
Should be application/json
Last updated