Create a new reminder
POST
/reminders
const url = 'http://localhost:8000/api/v1/reminders';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"client_id":"example","title":"example","description":"example","type":"daily_tracking","trigger_at":"2026-04-15T12:00:00Z","due_at":"2026-04-15T12:00:00Z","repeat_rule":"FREQ=DAILY;BYHOUR=20;BYMINUTE=0","timezone":"UTC","priority":1,"metadata":{}}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:8000/api/v1/reminders \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "client_id": "example", "title": "example", "description": "example", "type": "daily_tracking", "trigger_at": "2026-04-15T12:00:00Z", "due_at": "2026-04-15T12:00:00Z", "repeat_rule": "FREQ=DAILY;BYHOUR=20;BYMINUTE=0", "timezone": "UTC", "priority": 1, "metadata": {} }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
client_id
string
title
required
string
description
string
type
string
trigger_at
string format: date-time
due_at
string format: date-time
repeat_rule
string
Example
FREQ=DAILY;BYHOUR=20;BYMINUTE=0 timezone
string
Example
UTC priority
integer
metadata
object
Responses
Section titled “ Responses ”Reminder created successfully
Media type application/json
object
id
integer
title
string
description
string
type
string
trigger_at
string format: date-time
due_at
string format: date-time
repeat_rule
string
timezone
string
status
string
priority
integer
snoozed_until
string format: date-time
last_triggered_at
string format: date-time
next_trigger_at
string format: date-time
metadata
object
Example
{ "type": "daily_tracking", "repeat_rule": "FREQ=DAILY;BYHOUR=20;BYMINUTE=0", "timezone": "UTC", "status": "active"}Validation error