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

Latest commit

 

History

History
37 lines (28 loc) · 1.3 KB

File metadata and controls

37 lines (28 loc) · 1.3 KB

Favorite/Unfavourite a Room

Favorite or unfavorite room.

NameRequires AuthPermissionSetting
toggleFavoriteYes

Payload Parameters

Argument Example Required Description
roomId 64a1f373376181965ab77f54 Required The room id
favorite false

Optional:

Default: true

true - Mark as favorite.
false - Remove from favorite.

Example Call

{
    "msg": "method",
    "method": "toggleFavorite",
    "id": "16",
    "params": [
        "64a1f540376181965ab77f5b",
        false
    ]
}

Example Response

{
    "msg": "result",
    "id": "16",
    "result": 1
}