Actions30
- Message Actions
- User Actions
- Channel Actions
- Guild Actions
- Emoji Actions
- Analytics Actions
- Moderation Actions
- Backup Actions
- DM Actions
Overview
This node operation deletes a custom emoji from a specified Discord server (guild). It is useful for managing and moderating the emojis available in a Discord guild, such as removing outdated or inappropriate emojis. For example, a server admin can automate the removal of certain emojis based on specific criteria or user requests.
Use Case Examples
- Deleting a custom emoji by providing the guild ID and emoji ID to remove an unwanted emoji from the server.
- Automating emoji cleanup in a Discord guild to maintain a curated set of emojis.
Properties
| Name | Meaning |
|---|---|
| Guild ID | The ID of the Discord server (guild) where the emoji exists and will be deleted. |
| Emoji ID | The ID of the emoji to delete from the specified guild. |
| Additional Options | Optional parameters that can be used for extended functionality, though not directly relevant to emoji deletion in this operation. |
Output
JSON
success- Indicates if the emoji deletion was successful.emojiId- The ID of the deleted emoji.emojiName- The name of the deleted emoji.
Dependencies
- Discord API access via a bot token credential
Troubleshooting
- Ensure the provided Guild ID and Emoji ID are correct and that the bot has the necessary permissions to manage emojis in the guild.
- If the emoji is not found, the node will throw an error indicating the emoji does not exist.
- Verify the bot token credential is valid and has the 'Manage Emojis' permission in the Discord guild.
Links
- Discord API - Delete Guild Emoji - Official Discord API documentation for deleting a guild emoji.