Creates multiple stickers within the specified pack in a single bulk operation. Accepts an array of sticker definitions, each containing name, description, tags, and image data. Returns a response containing all successfully created stickers.
curl --request POST \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id}/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 pack
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/packs/stickers/{pack_id}/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>"
}
]
}