## Update `$ beeper-desktop-cli messages update` **put** `/v1/chats/{chatID}/messages/{messageID}` Edit the text content of an existing message. Messages with attachments cannot be edited. ### Parameters - `--chat-id: string` Path param: Unique identifier of the chat. - `--message-id: string` Path param: ID of the message to edit - `--text: string` Body param: New text content for the message ### Returns - `MessageUpdateResponse: object { chatID, messageID, success }` - `chatID: string` Unique identifier of the chat. - `messageID: string` Message ID. - `success: boolean` Whether the message was successfully edited ### Example ```cli beeper-desktop-cli messages update \ --chat-id '!NCdzlIaMjZUmvmvyHU:beeper.com' \ --message-id messageID \ --text x ```