Skip to content
Download Beeper

Send a message

$ beeper-desktop-cli messages send
POST/v1/chats/{chatID}/messages

Send a text message to a specific chat. Supports replying to existing messages. Returns a pending message ID.

ParametersExpand Collapse
--chat-id: string

Unique identifier of the chat.

--attachment: optional object { uploadID, duration, fileName, 3 more }

Single attachment to send with the message

--reply-to-message-id: optional string

Provide a message ID to send this as a reply to an existing message

--text: optional string

Text content of the message you want to send. You may use markdown.

ReturnsExpand Collapse
MessageSendResponse: object { chatID, pendingMessageID }
chatID: string

Unique identifier of the chat.

pendingMessageID: string

Pending message ID

Send a message

beeper-desktop-cli messages send \
  --chat-id '!NCdzlIaMjZUmvmvyHU:beeper.com'
{
  "chatID": "!signal_adamvy:local-signal.localhost",
  "pendingMessageID": "m1694783291234567"
}
Returns Examples
{
  "chatID": "!signal_adamvy:local-signal.localhost",
  "pendingMessageID": "m1694783291234567"
}