getSingleRoom method

Get a room.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • apiVersion Defaults to v4.
  • token Token of the room.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Room returned
  • 401: SIP request invalid
  • 404: Room not found

See:

Implementation

Future<DynamiteResponse<RoomGetSingleRoomResponseApplicationJson, RoomRoomGetSingleRoomHeaders>> getSingleRoom({
  required String token,
  RoomGetSingleRoomApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final rawResponse = getSingleRoomRaw(
    token: token,
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
  );

  return rawResponse.future;
}