POST /reminders
Schedule a reminder to be sent to the current user at the specified time. The reminder will link the relevant message.
Changes: New in Zulip 11.0 (feature level 381).
Servers
- https://{subdomain}.zulipchat.com/api/v1
- {server}/api/v1
- https://chat.zulip.org/api/v1
Request headers
| Name | Type | Required | Description |
|---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/x-www-form-urlencoded" |
Request body fields
| Name | Type | Required | Description |
|---|---|---|---|
message_id |
Integer | No |
The ID of the previously sent message to reference in the reminder message. |
note |
String | No |
A note associated with the reminder shown in the Notification Bot message. Changes: New in Zulip 11.0 (feature level 415). |
scheduled_delivery_timestamp |
Integer | No |
The UNIX timestamp for when the reminder will be sent, in UTC seconds. |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.