Room Details API

This API lets you retrieve the room details using either the room ID or the title of the room.

Using RoomId

GET

https://api.huddle01.com/api/v1/room-details/{roomId}

The Room Details API is a useful tool for retrieving information about a specific meeting room. By passing in the roomId as a parameter, you can easily access the details of a previously created room.

This API is especially useful if you need to retrieve information about a room for administrative purposes or if you want to display information about a room to its participants. Overall, the Room Details API is a valuable resource for accessing information about your meeting rooms and can be used in a variety of scenarios to enhance your experience with Huddle01.

GET
/room-details/{roomId}

Room Details API

The API supports a POST request with the following required parameters:

  • roomId - The RoomId of the room, for which you need to get the details.
Request
GET • /room-details/{roomId}
const response = await axios.get(
  'https://api.huddle01.com/api/v1/room-details/{roomId}',
  {
    headers: {
      'x-api-key': {{API_KEY}},
    },
  }
);
Response

Upon success, the API will return a response with the following fields:

  • roomId - The room ID of the newly created room.
  • roomLocked - A boolean value indicating if the room is locked.
  • metadata - An object containing the metadata of the room, including the title and other custom metadata.

In case of an error, the API will return an error message with a corresponding status code.

Response
  {
    "roomId": "nvw-fxtj-gha",
    "roomLocked": true,
    "metadata": {
      "title": "deployeddd",
      "hi": "axit"
	  }
  }

Request

ParamsDefinitionData TypeMandatory
roomIdThe RoomId of the room, for which you need to get the details.stringY

Response

FieldsDefinitionData TypeMandatory
roomIdThe RoomId of the room, for which you need to get the details.stringY
roomLockedThe room locked status of the room.booleanN
Audio/Video Infrastructure designed for developers to empower them to ship simple yet powerful Audio/Video Apps.
support
company
Copyright © 2024 Graphene 01, Inc. All Rights Reserved.