Get Mentioned Messages

Prev Next
Get
/api/v1/chat.getMentionedMessages

Get the messages in which you are mentioned (users are mentioned with the @ symbol). Visit the Messages user guide to learn more.

Changelog

Version Description
2.2.0 Added
Header parameters
X-Auth-Token
stringRequired

The authToken of the authenticated user.

ExampleRScctEHSmLGZGywfIhWyRpyofhKOiMoUIpimhvheU3f
X-User-Id
stringRequired

The userId of the authenticated user.

ExamplerbAXPnMktTFbNpwtJ
Query parameters
roomId
stringRequired

The room ID.

Example6GFJ3tbmHiyHbahmC
offset
integer

Number of items to "skip" in the query, i.e. requests return count items, skipping the first offset items. Refer to the official documentation to learn more.

Example50
count
integer

The number of items to return. Refer to the official documentation to learn more.

Example50
sort

List of fields to order by, and in which direction. This is a JSON object, with properties listed in desired order, with values of 1 for ascending, or -1 for descending. For example, { "value": -1, "_id": 1 }. Refer to the official documentation to learn more.

Responses
200

OK

Example 1
{
  "messages": [
    {
      "_id": "p93m92bPRudzoJ7oW",
      "rid": "6GFJ3tbmHiyHbahmC",
      "msg": "@test.john hello",
      "ts": "2023-10-16T23:27:02.945Z",
      "u": {
        "_id": "rbAXPnMktTFbNpwtJ",
        "username": "roxie",
        "name": "test test"
      },
      "_updatedAt": "2023-10-16T23:27:03.071Z",
      "urls": [],
      "mentions": [
        {
          "_id": "5fRTXMt7DMJbpPJfh",
          "username": "test.john",
          "name": "Test John",
          "type": "user"
        }
      ],
      "channels": [],
      "md": [
        {
          "type": "PARAGRAPH",
          "value": [
            {
              "type": "MENTION_USER",
              "value": {
                "type": "PLAIN_TEXT",
                "value": "test.john"
              }
            },
            {
              "type": "PLAIN_TEXT",
              "value": " hello"
            }
          ]
        }
      ]
    },
    {
      "_id": "4Q8nmha5doDHus5YR",
      "rid": "6GFJ3tbmHiyHbahmC",
      "msg": "@test.john",
      "ts": "2023-10-16T23:26:38.611Z",
      "u": {
        "_id": "rbAXPnMktTFbNpwtJ",
        "username": "roxie",
        "name": "test test"
      },
      "_updatedAt": "2023-10-16T23:26:38.728Z",
      "urls": [],
      "mentions": [
        {
          "_id": "5fRTXMt7DMJbpPJfh",
          "username": "test.john",
          "name": "Test John",
          "type": "user"
        }
      ],
      "channels": [],
      "md": [
        {
          "type": "PARAGRAPH",
          "value": [
            {
              "type": "MENTION_USER",
              "value": {
                "type": "PLAIN_TEXT",
                "value": "test.john"
              }
            }
          ]
        }
      ]
    }
  ],
  "count": 2,
  "offset": 0,
  "total": 2,
  "success": true
}
Expand All
object
messages
Array of object
object
_id
string
rid
string
msg
string
ts
string
u
object
_id
string
username
string
name
string
_updatedAt
string
urls
Array of object
object
mentions
Array of object
object
_id
string
username
string
name
string
type
string
channels
Array of object
object
md
Array of object
object
type
string
value
Array of object
object
type
string
value
string
count
integer
offset
integer
total
integer
success
boolean
400

Bad Request

Example 1
{
  "success": false,
  "error": "The required \"roomId\" query param is missing. [error-invalid-params]",
  "errorType": "error-invalid-params"
}
Incorrect room ID
{
  "success": false,
  "error": "error-not-allowed"
}
object
success
boolean
error
string
errorType
string
401

Unauthorized

Authorization Error
{
  "status": "error",
  "message": "You must be logged in to do this."
}
object
status
string
message
string