Create a Discord public thread
Creates a public thread in a channel. Pass messageId to start the thread from an
existing message, or omit it to create a standalone thread.
Threads created here are always public. Requires the bot to hold Create Public Threads, which the Zernio bot requests at install time.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Discord channel snowflake ID
Query Parameters
SocialAccount _id of the Discord account bound to this channel's guild
Thread name
1 <= length <= 100Optional message snowflake to start the thread from. Omit for a standalone thread.
Minutes of inactivity before the thread auto-archives. Discord accepts only these four values.
60 | 1440 | 4320 | 10080Response 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.createDiscordThread({ path: { channelId: 'channel_abc123', }, query: { accountId: 'account_abc123', }, body: { name: 'Example', },});console.log(data);{
"data": {
"id": "1180000000000000000",
"name": "Release 2.4 discussion"
}
}{
"error": "Unauthorized"
}Unpin a Discord message DELETE
Unpin a message. Same MANAGE_MESSAGES permission requirement as pin. Idempotent — unpinning a non-pinned message is a 204 no-op.
Crosspost Discord message POST
Publishes a message from an announcement channel so it propagates to every server following that channel. The source channel must be an announcement channel. Calling this on a regular text channel returns a 400 before Discord is contacted, because Discord's own error for this case is opaque.