Delete guild role. Requires manage_roles permission. Permanently removes the role from the guild.
curl --request DELETE \
--url https://api.fluxer.app/v1/guilds/{guild_id}/roles/{role_id} \
--header 'Authorization: <api-key>'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
The ID of the role
No Content
curl --request DELETE \
--url https://api.fluxer.app/v1/guilds/{guild_id}/roles/{role_id} \
--header 'Authorization: <api-key>'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}