Create guild sticker. Requires manage_emojis permission. Uploads a new sticker with name, description, and tags.
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/stickers \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk=",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
Success
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/stickers \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk=",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}