Delete a Discord scheduled event
Hard-delete an event. Use PATCH with status: 'cancelled' instead
if you want the event preserved in the guild's history.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Query Parameters
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.discord.deleteDiscordScheduledEvent({ path: { guildId: 'guild_abc123', eventId: 'event_abc123', }, query: { accountId: 'account_abc123', },});console.log(data);{
"success": true,
"deleted": "string"
}{
"error": "Unauthorized"
}Update a Discord scheduled event PATCH
Patch any subset of fields. Passing `status: 'cancelled'` is how you cancel an event — Discord doesn't have a dedicated cancel endpoint, it's a status transition. Most status transitions Discord enforces (you can't go SCHEDULED → COMPLETED directly). The common consumer case is SCHEDULED → CANCELED.
List Slack workspace members GET
Members of the connected Slack workspace that can receive a direct message, for populating a recipient picker. Bots, deactivated members and Slackbot are excluded. Start a DM by passing a member id as `participantId` to POST /v1/inbox/conversations.