Creates a new sticker within the specified pack. Requires the pack ID in the path and sticker metadata (name, description, tags, and image data) in the request body. Returns the newly created sticker with its generated ID.
curl --request POST \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id} \
--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 pack
Success
curl --request POST \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id} \
--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
}