action telegram_post_set_my_commands { label: "post_setMyCommands" description: "Use this method to change the list of the bot's commands. Returns *True* on success." provider: telegram method: POST path: "/setMyCommands" encoding: form input: { type: "object" required: ["commands"] properties: { commands: { type: "array" description: "A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified." items: { type: "object" description: "This object represents a bot command." required: ["command", "description"] properties: { command: { type: "string" description: "Text of the command, 1-32 characters. Can contain only lowercase English letters, digits and underscores." } description: { type: "string" description: "Description of the command, 3-256 characters." } } } } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "boolean" } } } }