latestOpenAPI 3.1.02026-08-211061591.1 MB
69a962f1578f
Reminders
Create Reminder
Create a new reminder for a task.
For relative reminders, provide minute_offset (minutes before the task's due time). For absolute reminders, provide a due dictionary with a specific date/time. Supported due keys are date or string, with optional lang, timezone, and is_recurring.
post/api/v1/reminders
Request body
Example request
{
"task_id": "6XGgmFVcrG5RRjVr",
"reminder_type": "relative",
"minute_offset": 30,
"due": {
"date": "2025-02-12T09:00:00",
"string": "tomorrow at 9am",
"lang": "en",
"timezone": "Europe/Madrid"
}
}Response
Successful Response
Example response
{
"id": "6XGgmFQrx44wfGHr",
"item_id": "6XGgmFVcrG5RRjVr",
"notify_uid": "1234567",
"type": "relative",
"minute_offset": 30,
"due": {
"date": "2025-02-12T09:00:00",
"lang": "en",
"timezone": "Europe/Madrid"
}
}