powered by
Add a reminder to a task
add_reminder( task_id, due_date = NULL, due_datetime = NULL, minute_offset = NULL, type = "absolute", verbose = TRUE, token = get_todoist_api_token() )
id of the new reminder
id of the task
due date for the reminder (format: YYYY-MM-DD)
due datetime for the reminder (format: YYYY-MM-DDTHH:MM:SS)
minutes before due time to remind (for relative reminders)
type of reminder: "absolute", "relative", or "location"
boolean that make the function verbose
todoist API token
if (FALSE) { add_reminder(task_id = "12345", due_datetime = "2024-12-25T09:00:00") add_reminder(task_id = "12345", minute_offset = 30, type = "relative") }
Run the code above in your browser using DataLab