Skip to content

Chat SDK now supports scheduled Slack messages

1 min read

Chat SDK now supports scheduled messages on Slack, allowing you to deliver a message at a future time.

Use thread.schedule() and pass your message and a postAt date, like:

const scheduled = await thread.schedule("Reminder: standup in 5 minutes!", {
postAt: new Date("2026-03-09T08:55:00Z"),
});
// Cancel before delivery
await scheduled.cancel();

Read the documentation to get started, and learn more about the Slack adapter.

The Complete Guide to Chat SDK

Learn how Chat SDK works end-to-end: from core concepts to building your first bot to deploying it across Slack, Teams, and more.

Read the guide