Skip to main content
PATCH
/
guilds
/
{guild_id}
/
emojis
/
{emoji_id}
Update guild 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
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Path Parameters

guild_id
string<snowflake>
required

The ID of the guild

Pattern: ^(0|[1-9][0-9]*)$
emoji_id
string<snowflake>
required

The ID of the emoji

Pattern: ^(0|[1-9][0-9]*)$

Body

application/json
name
string
required

The name of the emoji (2-32 characters, alphanumeric and underscores only)

Response

Success

id
string
required

The unique identifier for this emoji

Pattern: ^(0|[1-9][0-9]*)$
name
string
required

The name of the emoji

animated
boolean
required

Whether this emoji is animated