action telegram_post_get_sticker_set { label: "post_getStickerSet" description: "Use this method to get a sticker set. On success, a [StickerSet](https://core.telegram.org/bots/api/#stickerset) object is returned." provider: telegram method: POST path: "/getStickerSet" encoding: form input: { type: "object" required: ["name"] properties: { name: { type: "string" description: "Name of the sticker set" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "object" description: "This object represents a sticker set." required: ["contains_masks", "is_animated", "name", "stickers", "title"] properties: { contains_masks: { type: "boolean" description: "*True*, if the sticker set contains masks" } is_animated: { type: "boolean" description: "*True*, if the sticker set contains [animated stickers](https://telegram.org/blog/animated-stickers)" } name: { type: "string" description: "Sticker set name" } stickers: { type: "array" description: "List of all set stickers" items: { type: "object" description: "This object represents a sticker." required: ["file_id", "file_unique_id", "width", "height", "is_animated"] properties: { emoji: { type: "string" description: "*Optional*. Emoji associated with the sticker" } file_id: { type: "string" description: "Identifier for this file, which can be used to download or reuse the file" } file_size: { type: "integer" description: "*Optional*. File size" } file_unique_id: { type: "string" description: "Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file." } height: { type: "integer" description: "Sticker height" } is_animated: { type: "boolean" description: "*True*, if the sticker is [animated](https://telegram.org/blog/animated-stickers)" } mask_position: { type: "object" description: "This object describes the position on faces where a mask should be placed by default." required: ["point", "x_shift", "y_shift", "scale"] properties: { point: { type: "string" description: "The part of the face relative to which the mask should be placed. One of “forehead”, “eyes”, “mouth”, or “chin”." enum: ["forehead", "eyes", "mouth", "chin"] } scale: { type: "number" description: "Mask scaling coefficient. For example, 2.0 means double size." } x_shift: { type: "number" description: "Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. For example, choosing -1.0 will place mask just to the left of the default mask position." } y_shift: { type: "number" description: "Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. For example, 1.0 will place the mask just below the default mask position." } } } set_name: { type: "string" description: "*Optional*. Name of the sticker set to which the sticker belongs" } thumb: { type: "object" description: "This object represents one size of a photo or a [file](https://core.telegram.org/bots/api/#document) / [sticker](https://core.telegram.org/bots/api/#sticker) thumbnail." required: ["file_id", "file_unique_id", "width", "height"] properties: { file_id: { type: "string" description: "Identifier for this file, which can be used to download or reuse the file" } file_size: { type: "integer" description: "*Optional*. File size" } file_unique_id: { type: "string" description: "Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file." } height: { type: "integer" description: "Photo height" } width: { type: "integer" description: "Photo width" } } } width: { type: "integer" description: "Sticker width" } } } } thumb: { type: "object" additionalProperties: true } title: { type: "string" description: "Sticker set title" } } } } } }