Stage Instance

Create Stage

PostAPIStageInstance

Creates a new Stage instance associated to a Stage channel.

import { createStage } from "dressed";
await createStage(data);
Info

Requires the user to be a moderator of the Stage channel.

Get Stage

GetAPIStageInstance

Gets the stage instance associated with the Stage channel, if it exists.

import { getStage } from "dressed";
const stage = await getStage(channelId);

Modify Stage

PatchAPIStageInstance

Updates fields of an existing Stage instance.

import { modifyStage } from "dressed";
await modifyStage(channelId, data);
Info

Requires the user to be a moderator of the Stage channel.

Delete Stage

DeleteAPIStageInstance

Deletes the Stage instance.

import { deleteStage } from "dressed";
await deleteStage(channelId);
Info

Requires the user to be a moderator of the Stage channel.