Skip to main content

reminders.list method

Welcome to the new home of Slack developer docs!

We're still building and not all features are available quite yet. Enjoy this peek into the future!

Not ready for the future? Return to the past at api.slack.com.

Usage info

Retirement of API methods for interfacing with reminders began March 2023, and as such have become degraded or useless.

See this changelog for more information.

This method lists all reminders created by or for a given user.

Response

(Note: only non-recurring reminders will have time and complete_ts field.)

	{
"ok": true,
"reminders": [
{
"id": "Rm12345678",
"creator": "U18888888",
"user": "U18888888",
"text": "eat a banana",
"recurring": false,
"time": 1458678068,
"complete_ts": 0
},
{
"id": "Rm23456789",
"creator": "U18888888",
"user": "U18888888",
"text": "drink water",
"recurring": true
}
]
}