Edit a message
PUT/v1/chats/{chatID}/messages/{messageID}
Edit the text content of an existing message. Messages with attachments cannot be edited.
Path Parameters
Edit a message
curl http://localhost:23373/v1/chats/$CHAT_ID/messages/$MESSAGE_ID \
-X PUT \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $BEEPER_ACCESS_TOKEN" \
-d '{
"text": "x"
}'{
"id": "1343993",
"accountID": "local-whatsapp_ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc",
"chatID": "!whatsapp_15550101002:ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc.local-whatsapp.localhost",
"senderID": "@ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc:local-whatsapp.localhost",
"sortKey": "aaaa1",
"timestamp": "2025-08-28T11:04:29.621Z",
"attachments": [
{
"type": "unknown",
"id": "id",
"duration": 0,
"fileName": "fileName",
"fileSize": 0,
"isGif": true,
"isSticker": true,
"isVoiceNote": true,
"mimeType": "mimeType",
"posterImg": "posterImg",
"size": {
"height": 0,
"width": 0
},
"srcURL": "srcURL",
"transcription": {
"engine": "engine",
"transcription": "transcription",
"language": "language"
}
}
],
"editedTimestamp": "2025-08-31T23:30:12.520Z",
"isDeleted": false,
"isHidden": true,
"isSender": true,
"isUnread": false,
"linkedMessageID": "1343993",
"links": [
{
"title": "title",
"url": "url",
"favicon": "favicon",
"img": "img",
"imgSize": {
"height": 0,
"width": 0
},
"originalURL": "originalURL",
"summary": "summary"
}
],
"mentions": [
"@discord_337451892017545216:beeper.com"
],
"reactions": [
{
"id": "id",
"participantID": "participantID",
"reactionKey": "reactionKey",
"emoji": true,
"imgURL": "imgURL"
}
],
"seen": true,
"senderName": "Adam Van Ymeren",
"sendStatus": {
"status": "SUCCESS",
"timestamp": "2025-08-31T23:30:12.520Z",
"deliveredToUsers": [
"string"
],
"internalError": "internalError",
"message": "message",
"reason": "reason"
},
"text": "Updated message text",
"type": "TEXT",
"messageID": "1343993",
"success": true
}Returns Examples
{
"id": "1343993",
"accountID": "local-whatsapp_ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc",
"chatID": "!whatsapp_15550101002:ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc.local-whatsapp.localhost",
"senderID": "@ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc:local-whatsapp.localhost",
"sortKey": "aaaa1",
"timestamp": "2025-08-28T11:04:29.621Z",
"attachments": [
{
"type": "unknown",
"id": "id",
"duration": 0,
"fileName": "fileName",
"fileSize": 0,
"isGif": true,
"isSticker": true,
"isVoiceNote": true,
"mimeType": "mimeType",
"posterImg": "posterImg",
"size": {
"height": 0,
"width": 0
},
"srcURL": "srcURL",
"transcription": {
"engine": "engine",
"transcription": "transcription",
"language": "language"
}
}
],
"editedTimestamp": "2025-08-31T23:30:12.520Z",
"isDeleted": false,
"isHidden": true,
"isSender": true,
"isUnread": false,
"linkedMessageID": "1343993",
"links": [
{
"title": "title",
"url": "url",
"favicon": "favicon",
"img": "img",
"imgSize": {
"height": 0,
"width": 0
},
"originalURL": "originalURL",
"summary": "summary"
}
],
"mentions": [
"@discord_337451892017545216:beeper.com"
],
"reactions": [
{
"id": "id",
"participantID": "participantID",
"reactionKey": "reactionKey",
"emoji": true,
"imgURL": "imgURL"
}
],
"seen": true,
"senderName": "Adam Van Ymeren",
"sendStatus": {
"status": "SUCCESS",
"timestamp": "2025-08-31T23:30:12.520Z",
"deliveredToUsers": [
"string"
],
"internalError": "internalError",
"message": "message",
"reason": "reason"
},
"text": "Updated message text",
"type": "TEXT",
"messageID": "1343993",
"success": true
}