Skip to main content
PUT
/
v3
/
reminders
/
{reminder}
Edit Reminder
curl --request PUT \
  --url http://localhost/api/v3/reminders/{reminder} \
  --header 'Content-Type: application/json' \
  --data '
{
  "timezone": "<string>",
  "schedule_type": "absolute",
  "remind_at": "2023-11-07T05:31:56Z",
  "period_unit": "days",
  "period_value": 123,
  "period_time_at": "<string>",
  "repeat_unit": "daily",
  "repeat_value": 123,
  "repeat_time_at": "<string>",
  "channel": "slack",
  "note": "<string>",
  "recipient": "<string>",
  "is_active": true,
  "expires_at": "2023-11-07T05:31:56Z"
}
'
{
  "data": {
    "id": 123,
    "timezone": "<string>",
    "schedule_type": "<string>",
    "remind_at": "<string>",
    "period_unit": "<string>",
    "period_value": 123,
    "period_time_at": "<string>",
    "repeat_unit": "<string>",
    "repeat_value": 123,
    "repeat_time_at": "<string>",
    "channel": "<string>",
    "note": "<string>",
    "recipient": "<string>",
    "is_active": 123,
    "is_valid": "<string>",
    "expires_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

reminder
integer
required

The reminder ID

Body

application/json
timezone
string | null
schedule_type
enum<string>
Available options:
absolute,
period,
repeat
remind_at
string<date-time> | null
period_unit
enum<string> | null
Available options:
days,
weeks,
months,
years
period_value
integer | null
period_time_at
string | null
repeat_unit
enum<string> | null
Available options:
daily,
weekly,
monthly
repeat_value
integer | null
repeat_time_at
string | null
channel
enum<string>
Available options:
slack,
email
note
string
recipient
string | null
is_active
boolean | null
expires_at
string<date-time> | null

Response

Reminder

data
Reminder · object
required