Reminders
View reminders
Please be aware that once reminders are sent, they are removed from the list. This includes both one-time reminders and recurring reminders. As a result, you will not see any reminders that have already been dispatched.
View reminders
GET
https://web.r0app.com/api/v1/orgs/:org_id/reminders
Returns a paginated list of your reminders.
Query Parameters
page
Integer
limit
Integer
Example request
Create a reminder
Create a reminder
POST
https://web.r0app.com/api/v1/orgs/:org_id/reminders
Request Body
user_reminder[remind_by]
String
Options include email
or push
(mobile push notification, if enabled on mobile first)
user_reminder[repeat_every_unit]
String
Options include hour
, day
, or week
user_reminder[repeat_every_magnitude]
Integer
This field should be equal to the number you'd like between your reminders.
E.g. if you wanted to be reminded every other week set this to 2 and the field above to week
.
user_reminder[schedule_at]
String
user_reminder[title]
String
user_reminder[repeat_count]
Integer
Represents the number of reminders you'll receive
Example request
Update a reminder
Create a reminder
PATCH
https://web.r0app.com/api/v1/orgs/:org_id/reminders/:reminder_id
Request Body
user_reminder[remind_by]
String
Options include email
or push
(mobile push notification, if enabled on mobile first)
user_reminder[repeat_every_unit]
String
Options include hour
, day
, or week
user_reminder[repeat_every_magnitude]
Integer
This field should be equal to the number you'd like between your reminders.
E.g. if you wanted to be reminded every other week set this to 2 and the field above to week
.
user_reminder[schedule_at]
String
user_reminder[title]
String
user_reminder[repeat_count]
Integer
Represents the number of reminders you'll receive
Example request
Delete a reminder
Delete a reminder
DELETE
https://web.r0app.com/api/v1/orgs/:org_id/reminders/:reminder_id
Path Parameters
Reminder id*
UUID
Example request
Last updated