Delete a Discord guild role
Permanently deletes a role from the guild and removes it from every member. This cannot be undone.
Requires the bot to hold Manage Roles, and the target role must sit below the bot's highest role.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Discord guild snowflake ID
Discord role snowflake ID
Query Parameters
SocialAccount _id of the Discord account bound to this 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.deleteDiscordGuildRole({ path: { guildId: 'guild_abc123', roleId: 'role_abc123', }, query: { accountId: 'account_abc123', },});console.log(data);{
"success": true
}{
"error": "Unauthorized"
}Edit a Discord guild role PATCH
Updates a role's name, color, hoist, mentionable flag, or permission bitfield. At least one field must be supplied. Omitted fields are left unchanged. Requires the bot to hold Manage Roles, and the target role must sit below the bot's highest role. See the create-role operation for the re-invite requirement.
List Discord guild members GET
Cursor-paginated list of guild members. Returns Discord's raw member objects so callers can build community-ops automation (e.g. "add role to all members joined in the last 7 days") on the actual platform shape. **Important:** this endpoint requires the privileged "Server Members Intent" enabled on the Discord app (Developer Portal → Bot tab → toggle "Server Members Intent" ON, then Save). Without it, Discord returns an empty array with no error. Verify the intent is enabled before relying on this endpoint. Pagination: pass `after` = the last `user.id` from the previous page. Omit on the first call. Response includes a `nextCursor` and `hasMore` flag so callers don't need to know Discord's pagination shape.