Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 431 Bytes

post.md

File metadata and controls

39 lines (30 loc) · 431 Bytes

Create Room

This route create a new room with given id if given.

URL : /api/v1/room

Method : POST

Data Example

{
    roomId:? "Some Room Id"
}

Success Response


Code : 200

Content Example

{
    status : "success",
    sroom : "Room Id Sent"
    
}

Error Response


Code : 500

Content Example

{
    status : "fail",
    err : "Some Error Here"

}