Update an existing reminder in the workspace.
DTSTART and RRULE lines.In JSON encoding, the newline is represented as \n. The previous example would be encoded as:RRULE:COUNT=1RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR;INTERVAL=1RRULE:FREQ=WEEKLY;INTERVAL=1RRULE:FREQ=WEEKLY;INTERVAL=2RRULE:FREQ=MONTHLY;INTERVAL=1RRULE:FREQ=MONTHLY;INTERVAL=3RRULE:FREQ=YEARLY;INTERVAL=1public or private.
public: The reminder is visible to all users in the workspace.private: The reminder is visible only to the current user.public, you can provide a list of users to be notified when the reminder is triggered.
If the visibility is changed to private, the current user is automatically notified.
When changing the visibility of the reminder, the assigned users can be affected in the following way:
private to public: The assigned users is automatically set to the current user.public to private: The assigned users is kept as the current user, unless you also provide a new list of users to be notified.API key for authentication
The ID of the reminder to update.
40The name of the reminder.
255"Reminder on John Doe"
The recurrence rule of the reminder. The recurrence rule is a string that follows the iCalendar format specified in RFC 5545. We support only a subset of the iCalendar format:
DTSTART;TZID=<timezone>:<date>T<time>
RRULE:<recurrence parameters>Only the following recurrence parameters are supported:
RRULE:COUNT=1RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR;INTERVAL=1RRULE:FREQ=WEEKLY;INTERVAL=1RRULE:FREQ=WEEKLY;INTERVAL=2RRULE:FREQ=MONTHLY;INTERVAL=1RRULE:FREQ=MONTHLY;INTERVAL=3RRULE:FREQ=YEARLY;INTERVAL=1Supplying any other type of recurrence will result in a validation error.
150"DTSTART;TZID=Europe/Paris:20250717T090000\nRRULE:FREQ=WEEKLY;INTERVAL=1"
The visibility of the reminder.
public: The reminder is visible to all users in the workspace.private: The reminder is visible only to the current user.public, private A list of workspace users to be notified when the reminder is triggered. Only required for public reminders. For private reminders, this field must be omitted and the current user is automatically notified.
1 - 50 elements[
{
"id": "usr_a45c30d8-19fc-4939-94c7-17dc5e46f476"
},
{ "email": "[email protected]" }
]The updated reminder in the workspace.
A reminder linked to an entity.
{
"id": "rmd_91118b73-5a75-480b-b8e3-a33671c35cdc",
"name": "Reminder on John Doe",
"entity": {
"id": "per_55175e81-9a52-4ac3-930e-82792c23499b",
"entityType": "person",
"fullName": "John Doe"
},
"recurrenceRule": "DTSTART;TZID=Europe/Paris:20250717T090000\nRRULE:FREQ=WEEKLY;INTERVAL=1",
"visibility": "public",
"assignedUsers": [
{
"id": "usr_a45c30d8-19fc-4939-94c7-17dc5e46f476",
"fullName": "John Doe",
"email": "[email protected]"
}
],
"nextTriggerTime": "2025-07-17T09:00:00.000Z",
"lastTriggerTime": "2025-05-17T09:00:00.000Z",
"createdBy": {
"id": "usr_bc984b3f-0386-434d-82d7-a91eb6badd71",
"fullName": "John Doe",
"email": "[email protected]"
},
"createdAt": "2021-01-01T00:00:00.000Z"
}["This field is deprecated"]