=================== Stickers Management =================== .. _sticker: In this section is explained Sticker Management. Sticker Set ----------- **Type:** +-----------+---------------------------------------+ | Type | **GET** | +===========+=======================================+ | URL | /api/v1/mobile/[stickerSetIdentifier] | +-----------+---------------------------------------+ **Parameters:** +-------------------------+---------------+--------------------------+ | **Name** | **Type** | **Description** | +=========================+===============+==========================+ | stickerSetIdentifier | String | Sticker set identifier | +-------------------------+---------------+--------------------------+ **Response OK:** .. code-block:: json { "error": false, "identifier": "3jnjd3jn", "name": "Monk Stickers", "author": "Rosario Brischetto", "enabled": true, "version": 1, "stickers": [ { "identifier": "mk4k4fi", "codes": [ "0x1f31a", "0x1f30d" ] }, { "identifier": "jn4mf33", "codes": [ "0x1f30d" ] }, { "identifier": "5nfij4l", "codes": [ "0x2b50", "0x1f301" ] } ] } **Response KO:** .. code-block:: json { "error": true, "reason": "Sticker Set not found", "code": "0001" } Sticker ------- **Type:** +-----------+-----------------------------------------------------------+ | Type | **GET** | +===========+===========================================================+ | URL | /api/v1/mobile/[stickerSetIdentifier]/[stickerIdentifier] | +-----------+-----------------------------------------------------------+ **Parameters:** +-------------------------+---------------+--------------------------+ | **Name** | **Type** | **Description** | +=========================+===============+==========================+ | stickerSetIdentifier | String | Sticker set identifier | +-------------------------+---------------+--------------------------+ | stickerIdentifier | String | Sticker identifier | +-------------------------+---------------+--------------------------+ Tables ------ **Sticker Set Table:** +------------+---------------+--------------------------+ | **Field** | **Value** | **Description** | +============+===============+==========================+ | identifier | String | Sticker identifier | +------------+---------------+--------------------------+ | name | String | Sticker set identifier | +------------+---------------+--------------------------+ | author | String | Author name | +------------+---------------+--------------------------+ | enabled | boolean | Sticker set status | +------------+---------------+--------------------------+ | version | int | Sticker set version | +------------+---------------+--------------------------+ | stickers | List | List of related stickers | +------------+---------------+--------------------------+ **Sticker Table:** +---------------+---------------+--------------------------+ | **Field** | **Value** | **Description** | +===============+===============+==========================+ | identifier | String | Sticker identifier | +---------------+---------------+--------------------------+ | codes | int[] | Emoticon codes | +---------------+---------------+--------------------------+