API

Get all rooms incl. participants

get/api/rooms

Response

Success

idstring required
groupstring
namestring required
joinUrlstring required
iconstring

Example response

[
  {
    "id": "xxxxxxxx",
    "group": "Team 1",
    "name": "Coffee Kitchen",
    "joinUrl": "https://zoom.us/j/xxxxxxxx",
    "participants": [
      {
        "username": "hans.example",
        "name": "Hans Example",
        "email": "hans.example@example.com",
        "profileImage": "http://my.image.com/bla.png"
      }
    ],
    "links": [
      {
        "href": "http://www.google.de",
        "text": "Google",
        "icon": "http://example.com/bla.png"
      }
    ],
    "icon": "http://example.com/myRoomIcon.png"
  }
]

Changes