Get Sticker List

get
Query parameters
sessionstringRequired

The session key generated by your admin for controlling which channel is allowed to send message across API

Header parameters
X-USER-TOKENstringRequired

The secret key provided by iSlash for accessing the iSlash API platform

Responses
200

Success

application/json
get
https://{ISLASH_API_ENDPOINT}/api/public/sticker
200

Success

Sample Response
{
    "meta": {
        "code": "RESP_OKAY",
        "message": "Success"
    },
    "data": {
        "stickers": [
            {
                "id": 66,
                "name": "sticker7",
                "type": "image/webp",
                "width": 512,
                "height": 512
            },
            {
                "id": 67,
                "name": "sticker5",
                "type": "image/webp",
                "width": 512,
                "height": 512
            }
        ]
    }
}

Last updated