đ§ read_business_message
Marks an incoming message as read on behalf of a business account.
âī¸ Parameters
business_connection_id
(str
): Unique identifier of the business connection on behalf of which to read the messagechat_id
(int
): Unique identifier of the chat in which the message was received. The chat must have been active in the last 24 hours.message_id
(int
): Unique identifier of the message to mark as read
đ˛ Returns
bool
đ Examples
-đĒĢ Required Parameters
await bot.read_business_message(
business_connection_id=your_business_connection_id_here,
chat_id=your_chat_id_here,
message_id=your_message_id_here
)