Admin panel

Tech Messages API

Moderators can tag messages as "tech" in the admin panel, and you can receive all messages with this tag by API.

Endpoint

https://techmessages.watchers.io/find/{API KEY}

⚠️

Regional endpoints: Replace techmessages.watchers.io with the endpoint matching your project region. See Supported Regions for details.

Region Endpoint
Europe (default) techmessages.watchers.io
North America techmessages.us.watchers.io
South America techmessages.sa.watchers.io
Asia techmessages.hk.watchers.io
Africa techmessages.za.watchers.io

GET Params

Parameter Description
cursor or offset for cursor or classic(offset) pagination
limit number of messages in response, default 10
roomid id of room

Response example

JSON
{
  "data": [
    {
      "id": 7343,
      "createdAt": "2020-01-01T09:00:00.150Z",
      "name": "John",
      "text": "Hi all!",
      "pic": "img.jpg",
			"userId": "123123",
      "roomId": "testRoom",
      "roomName": "Room for a Test messages"
    }
  ],
  "nextCursor": null,
  "hasNext": false
}
Updated 5 months ago