action telegram_post_get_my_commands { label: "post_getMyCommands" description: "Use this method to get the current list of the bot's commands. Requires no parameters. Returns Array of [BotCommand](https://core.telegram.org/bots/api/#botcommand) on success." provider: telegram method: POST path: "/getMyCommands" encoding: json output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "array" 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." } } } } } } }