Create guild emoji. Requires manage_emojis permission. Uploads and registers a new custom emoji for the guild.
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/emojis \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk="
}
'{
"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
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/emojis \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk="
}
'{
"id": "<string>",
"name": "<string>",
"animated": true
}