For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send Live Message

How to send a live message

POST https://mburger.cloud/api/send-live-message

curl https://mburger.cloud/api/send-live-message
-X POST
-H "Accept: application/json" 
-H "X-MBurger-Token: <token>" 
-H "X-MBurger-Version: 3"

Parameters

Name

Type

Required

Description

text

string

Yes

Message text.

sender_name

int

No

Sender name.

mobile_user_id

int

No

You can associate a mobile user id, which is useful when you send messages from clients like the app.

When successful, a HTTP 200 and JSON like this is returned:

{
  "status_code": 0
}

Last updated