Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
49 lines (39 loc) · 1.32 KB

File metadata and controls

49 lines (39 loc) · 1.32 KB
description
Retrieves the deleted messages from a specific date.

Get Deleted Messages

URL Requires Auth HTTP Method
/api/v1/chat.getDeletedMessages yes GET

Query Parameters

Argument Example Required Description
roomId ByehQjC44FwMeiLbX Required The room id
since 2018-12-12T00:11:22.345Z Required The date (ISODate) to search deleted messages

Example Call

curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
     -H "X-User-Id: aobEdbYhXfu5hkeqG" \
     http://localhost:3000/api/v1/chat.getDeletedMessages?roomId=ByehQjC44FwMeiLbX&since=2018-12-12T00:11:22.345Z&count=1&offset=2

Example Result

{
    "messages": [
        {
            "_id": "W32fr3LjPxQ2TQH8A"
        },
        {
            "_id": "D43CH4HC2J43C2JB4"
        }
    ],
    "count": 2,
    "offset": 2,
    "total": 91,
    "success": true
}

Change Log

Version Description
0.73.0 Added