Snooze a reminder
POST
/reminders/{id}/snooze
const url = 'http://localhost:8000/api/v1/reminders/1/snooze';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"until":"2026-04-15T12:00:00Z"}'};
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/1/snooze \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "until": "2026-04-15T12:00:00Z" }'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
integer
Request Body required
Section titled “Request Body required ” Media type application/json
object
until
required
string format: date-time
Example generated
{ "until": "2026-04-15T12:00:00Z"}Responses
Section titled “ Responses ”Reminder snoozed
Reminder not found