Create a new webinar room
Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the oauth. Example:Authorization: oauth ********************
Body Params application/jsonRequired
{
"v": "1",
"language": "en",
"project_id": 1,
"room_name": "Room display name",
"room_id": "room-id"
}
Request Code Samples
curl --location --request POST 'https://api-v2.streamvi.io/method/webinar/room/create' \
--header 'Authorization: oauth <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"v": "1",
"language": "en",
"project_id": 1,
"room_name": "Room display name",
"room_id": "room-id"
}'
Responses
application/json {
"invite_link": "https://example.com/invite-link"
}
Modified at 2025-12-08 06:33:16