Procedures
Automation procedures in the Discord book.
Ensure that you have installed or connected the Discord book and created a new playground before using these automation procedures.
to get some (channels) from a guild
Retrieves all channels from a specific guild.
Input Concepts
The Guild object representing the server to get channels from.
discord guild or discord server
Yes
(no default)
Output Concepts
A list of Channel objects containing information about each channel.
discord channel or discord guild channel
Examples
Get all channels from a specific guild:
Get channels by name:
to get some (guilds)
Retrieves all guilds (servers) that the bot is a member of.
Output Concepts
A list of Guild objects representing the servers the bot has access to.
discord guild or discord server
Examples
Get all guilds the bot is in:
Get guilds and use them in further operations:
Get the guilds with specific names:
to get some (members) from a guild
Retrieves all members from a specific guild.
Input Concepts
Output Concepts
A list of GuildMember objects containing information about each member.
discord guild member or discord member
Examples
Get all members from a specific guild:
Get members by nick:
to send a (new message) to a channel
Sends a message to a specific channel.
Input Concepts
The Channel object representing where to send the message.
discord channel or discord guild channel
Yes
(no default)
The MessageBody object containing the message content and any embeds.
discord message body
Yes
(no default)
Output Concepts
Examples
Get channels and send a message:
Last updated
Was this helpful?
