setMyCommands()
Use this method to change the list of the bot's commands. See this manual for more details about bot commands. Returns True on success.
parameters
| parameter | type | required | description |
|---|---|---|---|
commands | BotCommand[] | required | 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. |
scope | BotCommandScope | optional | A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault. |
language_code | string | optional | A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands. |
returns
boolean
usage in yaebal
not (yet) hard-typed on Api — call it through the generic .call<T>() escape hatch documented in @yaebal/types.
import type { SetMyCommandsParams } from "@yaebal/types";
await bot.api.call<boolean>("setMyCommands", {
commands: [],
} satisfies SetMyCommandsParams);official Bot API docs: https://core.telegram.org/bots/api/#setmycommands