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",
"room_id": "room-id",
"participant_name": "Participant name",
"region": "Region",
"client_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
Request Code Samples
curl --location --request POST 'https://api-v2.streamvi.io/method/webinar/room/join-anonymous' \
--header 'Authorization: oauth <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"v": "1",
"language": "en",
"room_id": "room-id",
"participant_name": "Participant name",
"region": "Region",
"client_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Responses
application/json {
"server_url": "https://example.com/server-url",
"room_id": "Room name",
"participant_token": "Participant token",
"participant_name": "Participant name",
"participant_photo": "https://example.com/photo.jpg",
"is_stream": true,
"room_owner_avatar": "https://example.com/avatar.jpg",
"room_owner_name": "Room owner name",
"canvas_width": 1080,
"canvas_height": 1920
}
Modified at 2026-03-02 07:03:40