Skip to main content
POST
/
packs
/
stickers
/
{pack_id}
/
bulk
Bulk create pack 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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Path Parameters

pack_id
string<snowflake>
required

The ID of the pack

Body

application/json
stickers
object[]
required

Array of sticker objects to create (1-50 stickers per batch)

Required array length: 1 - 50 elements

Response

Success

success
object[]
required

Successfully created stickers

Maximum array length: 500
failed
object[]
required

Stickers that failed to create

Maximum array length: 500