Skip to content
On this page

stage.ref.room.admin

会議室に関する要認証操作です。

メソッド

create() admin

引数必須内容
dataCreateRoomInput作成用データ

会議室を作成します。

使用方法

ts
const room = await Hedgehog.stage.ref("ステージのUUID").room.admin.create({
  title: "会議室タイトル",
  eventUuid: "イベントUUID",
  isPublic: true,
  startDate: new Date().toISOString(),
  endDate: new Date().toISOString(),
});