Create Room

To create a meet room by current user.

info

{api-base-url} can be obtained from the MirrorFly console.

HTTP request#

curl -X POST "https://{api-base-url}/api/v1/users/calls/createRoom"
-H "accept: */*"
-H "Authorization: AuthToken"

Responses#

If successful, this action returns a meet data in the response body.

{
"status": 200,
"data": {
"roomLink": "xxx-yyy-zzz",
"roomId": "xxxx-yyyy-zzzz",
"behaviour": "meet"
},
"message": "Room created successfully"
}

Error#

In the case of an error, an error object like below is returned. When the token passed in Headers is not given or expired

{
"status": 401,
"message": "Token Expired"
}

In the case of a Bad Request, an error message is returned

{
"status": 400,
"message": "Error Message"
}