action telegram_post_set_chat_administrator_custom_title { label: "post_setChatAdministratorCustomTitle" description: "Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns *True* on success." provider: telegram method: POST path: "/setChatAdministratorCustomTitle" encoding: form input: { type: "object" required: ["chat_id", "custom_title", "user_id"] properties: { chat_id: { description: "Unique identifier for the target chat or username of the target supergroup (in the format `@supergroupusername`)" type: "object" } custom_title: { type: "string" description: "New custom title for the administrator; 0-16 characters, emoji are not allowed" } user_id: { type: "integer" description: "Unique identifier of the target user" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "boolean" } } } }