Documentation

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}

GET Params

ParameterDescription
cursor or offsetfor cursor or classic(offset) pagination
limitnumber of messages in response, default 10
roomidid of room

Response example

{
  "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
}