action telegram_post_set_chat_sticker_set { label: "post_setChatStickerSet" description: "Use this method to set a new group sticker set for a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Use the field *can\\_set\\_sticker\\_set* optionally returned in [getChat](https://core.telegram.org/bots/api/#getchat) requests to check if the bot can use this method. Returns *True* on success." provider: telegram method: POST path: "/setChatStickerSet" encoding: form input: { type: "object" required: ["chat_id", "sticker_set_name"] properties: { chat_id: { description: "Unique identifier for the target chat or username of the target supergroup (in the format `@supergroupusername`)" type: "object" } sticker_set_name: { type: "string" description: "Name of the sticker set to be set as the group sticker set" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "boolean" } } } }