/ Platform API
Platform API
    Chat Platform API v3
    Chat Platform API
    Chat Platform API
    Version 3

    List all emojis

    Copy link

    Retrieves an array of all emojis registered to the application.


    HTTP request

    Copy link
    GET https://api-{application_id}.sendbird.com/v3/emojis
    

    Response

    Copy link

    If successful, this action returns a list of emoji resources in the response body.

    {
        "emojis": [
            {
                "key": "smile",
                "url": "https://emojikeyboard.io/img/img-apple-64/1f600.png"
            },
            {
                "key": "angry",
                "url": "https://emojikeyboard.io/img/img-apple-64/1f620.png"
            },
            ... # More emojis
        ]
    }
    

    In the case of an error, an error object is returned. A detailed list of error codes is available here.