Send
Send a message
/v1/chats/{chatID}/messages
Send a text message to a specific chat. Supports replying to existing messages. Returns the sent message ID.
Path Parameters
chatID: string
Unique identifier of the chat.
Body Parameters
replyToMessageID: 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.
Returns
chatID: string
Unique identifier of the chat.
pendingMessageID: string
Pending message ID
Send a message
curl http://localhost:23373/v1/chats/$CHAT_ID/messages \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $BEEPER_ACCESS_TOKEN"
{
"chatID": "!signal_adamvy:local-signal.localhost",
"pendingMessageID": "m1694783291234567"
}
Returns Examples
{
"chatID": "!signal_adamvy:local-signal.localhost",
"pendingMessageID": "m1694783291234567"
}