Retrieve list of all chat rooms

Learn how to retrieve the list of all chat rooms using iFlyChat REST API

Get the list of all chat rooms

POST https://api.iflychat.com/api/1.1/rooms/list

You can use iFlyChat API to programmatically retrieve the list of all chat rooms.

Path Parameters

{
  "rooms": [
    {
      "room_id": 1,
      "room_name": "test1",
      "room_role": "1",
      "room_private": "0",
      "room_moderate": "0"
    },
    {
      "room_id": 2,
      "room_name": "test2",
      "room_role": "1",
      "room_private": "0",
      "room_moderate": "0"
    },
    {
      "room_id": 3,
      "room_name": "test3",
      "room_role": "1",
      "room_private": "0",
      "room_moderate": "0"
    }
  ],
  "length": 3
}

Curl Command

This the sample curl command required to make HTTP request:

curl -H "Content-Type: application/json" -X POST https://api.iflychat.com/api/1.1/rooms/list -d "{\"api_key\":\"Wr4vpoJ_ET3lpBdX9E9TutUic4Dgb-gc7RGzuZvKqZgW5\"}"

Last updated