đ§ edit_message_checklist
Use this method to edit a checklist on behalf of a connected business account.
âī¸ Parameters
business_connection_id(str): Unique identifier of the business connection on behalf of which the message will be sentchat_id(int): Unique identifier for the target chatmessage_id(int): Unique identifier for the target messagechecklist(InputChecklist ): A JSON-serialized object for the new checklistreply_markup(InlineKeyboardMarkup ) (optional): A JSON-serialized object for the new inline keyboard for the message
đ˛ Returns
Message
đ Examples
-đĒĢ Required Parameters
await bot.edit_message_checklist(
business_connection_id=your_business_connection_id_here,
chat_id=your_chat_id_here,
message_id=your_message_id_here,
checklist=your_checklist_here
)
-đ All Parameters
await bot.edit_message_checklist(
business_connection_id=your_business_connection_id_here,
chat_id=your_chat_id_here,
message_id=your_message_id_here,
checklist=your_checklist_here,
reply_markup=your_reply_markup_here
)