Updates the name of an existing emoji within the specified pack. Requires both pack ID and emoji ID in the path parameters. Returns the updated emoji with its new name and all existing metadata.
curl --request PATCH \
--url https://api.fluxer.app/v1/packs/emojis/{pack_id}/{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 pack
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/packs/emojis/{pack_id}/{emoji_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"animated": true
}