Reminders
View a contact's reminders
Fetch a list of a contact's reminders
GET
https://web.r0app.com/api/v1/orgs/:org_id/contacts/:contact_id/reminders
Returns a paginated list of a contact's 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/contacts/:contact_id/reminders
Request Body
user_reminder[remind_by]
String
Options include email
or push
(mobile push notification, if enabled on mobile first)
user_reminder[category]
String
custom
user_reminder[schedule_before_unit]
String
Options include minute
, hour
, day
, or week
user_reminder[schedule_before_magnitude]
Integer
This field should be equal to the number of schedule_before_unit(s) you'd like to be reminded. e.g. 2
week
(s) would remind youd
Example request
Upload an attachment
Upload an attachment
POST
https://web.r0app.com/api/v1/orgs/:org_id/contacts/:contact_id/attachments
Request Body
upload
File
Example request
Delete an attachment
NOTE: your attachment will be deleted from our servers immediately. There is no recourse for this action, proceed with caution.
Delete an attachment
DELETE
https://web.r0app.com/api/v1/orgs/:org_id/contacts/:contact_id/attachments/:attachment_id
Path Parameters
:contact_id*
String
:attachment_id*
String
Example request
Last updated