-
Notifications
You must be signed in to change notification settings - Fork 1
仕様 REST API
たけちゃ edited this page Jul 9, 2020
·
2 revisions
GET /api/room
Response:
[
{
roomId: string,
roomName: string,
participants: int
}
]
GET /api/room/accountId/{accountId}
Response:
[
{
roomId: string,
roomName: string,
participants: int
}
]
POST /api/room/accountId/{accountId}
Request Body:
{
roomName: string
}
Response:
{
roomId: string
}