Creates multiple emojis within the specified pack in a single bulk operation. Accepts an array of emoji definitions, each containing name and image data. Returns a response containing all successfully created emojis.
curl --request POST \
--url https://api.fluxer.app/v1/packs/emojis/{pack_id}/bulk \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"emojis": [
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk="
}
]
}
'{
"success": [
{
"id": "<string>",
"name": "<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 emoji objects to create (1-50 emojis per batch)
1 - 50 elementsShow child attributes
curl --request POST \
--url https://api.fluxer.app/v1/packs/emojis/{pack_id}/bulk \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"emojis": [
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk="
}
]
}
'{
"success": [
{
"id": "<string>",
"name": "<string>",
"animated": true
}
],
"failed": [
{
"name": "<string>",
"error": "<string>"
}
]
}