Skip to content

discordEventManager

javis86 edited this page Sep 15, 2024 · 2 revisions

Introduction

With Scheduled events, you will now be able to schedule "events" in your server ahead of time so that your community can learn about and be notified of when they're occurring and be notified when you're live.

Scheduled events

Discord api guild scheduled events

Flow

Examples

msg.action = "create";
msg.guild = "830549562909130803";
msg.eventName = "Test";
msg.eventType = "external";
msg.channel = "830549563457798159";
msg.description = "My event";
msg.eventLocation = "BsAs Argentina";
msg.scheduledStartTime = new Date('2024-10-01 10:00:00');
msg.scheduledEndTime = new Date('2024-10-01 11:00:00');

return msg;