## Archive `chats.archive(strchat_id, ChatArchiveParams**kwargs)` **post** `/v1/chats/{chatID}/archive` Archive or unarchive a chat. Set archived=true to move to archive, archived=false to move back to inbox ### Parameters - `chat_id: str` Unique identifier of the chat. - `archived: Optional[bool]` True to archive, false to unarchive ### Example ```python from beeper_desktop_api import BeeperDesktop client = BeeperDesktop() client.chats.archive( chat_id="!NCdzlIaMjZUmvmvyHU:beeper.com", ) ```