action telegram_post_set_chat_title { label: "post_setChatTitle" description: "Use this method to change the title of a chat. Titles can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns *True* on success." provider: telegram method: POST path: "/setChatTitle" encoding: form input: { type: "object" required: ["chat_id", "title"] properties: { chat_id: { description: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)" type: "object" } title: { type: "string" description: "New chat title, 1-255 characters" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "boolean" } } } }