Skip to main content
POST
/
global-message
Send a global message to provided teams
curl --request POST \
  --url https://incoming.qomon.app/global-message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "body": "<string>",
    "team_ids": [
      123
    ],
    "title": "<string>"
  }
}
'
{
  "data": {
    "accepted": true
  },
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Body

application/json
data
object
required

Response

OK

data
object
required
status
string
required

Operation result.

Example:

"success"

Last modified on June 16, 2026