Bulk create guild stickers. Requires manage_emojis permission. Creates multiple stickers in a single request for efficiency.
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/stickers/bulk \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"stickers": [
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk=",
"description": "<string>",
"tags": [
"<string>"
]
}
]
}
'{
"success": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}
],
"failed": [
{
"name": "<string>",
"error": "<string>"
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
Array of sticker objects to create (1-50 stickers per batch)
1 - 50 elementsShow child attributes
curl --request POST \
--url https://api.fluxer.app/v1/guilds/{guild_id}/stickers/bulk \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"stickers": [
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk=",
"description": "<string>",
"tags": [
"<string>"
]
}
]
}
'{
"success": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}
],
"failed": [
{
"name": "<string>",
"error": "<string>"
}
]
}