Update guild emoji. Requires manage_emojis permission. Renames or updates properties of an existing emoji.
curl --request PATCH \
--url https://api.fluxer.app/v1/guilds/{guild_id}/emojis/{emoji_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"animated": true
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
The ID of the emoji
The name of the emoji (2-32 characters, alphanumeric and underscores only)
curl --request PATCH \
--url https://api.fluxer.app/v1/guilds/{guild_id}/emojis/{emoji_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"animated": true
}