Crosspost Discord message
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.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Discord announcement channel snowflake ID
Discord message snowflake ID
Query Parameters
SocialAccount _id of the Discord account bound to this channel's guild
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.crosspostDiscordMessage({ path: { channelId: 'channel_abc123', messageId: 'message_abc123', }, query: { accountId: 'account_abc123', },});console.log(data);{
"data": {}
}{
"error": "Unauthorized"
}Create a Discord public thread POST
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.
Delete a Discord channel message DELETE
Deletes a message from a channel, for moderation and cleanup. This cannot be undone. Deleting a message the bot did not send requires the bot to hold the Manage Messages permission, which the Zernio bot requests at install time. Deleting the bot's own message needs no extra permission. Ownership is verified by resolving the channel's guild and confirming the caller owns a Discord account bound to it.