API ReferenceRoomsCreate_schedule_video_room
Create scheduled video room
Create a scheduled video room (body includes `start_at`).
Create a scheduled video room (body includes `start_at`).
In: header
HMAC SHA256 (Base64-encoded) signature of the request. Generate this using your API key and the request parameters (room_id). The server validates this signature to verify authenticity.
In: header
application/json
application/json
curl -X POST "https://v.cloudapi.vconnct.me/api/v4/rooms/create_schedule_video_room" \ -H "Content-Type: application/json" \ -d '{ "type": "object", "required": [ "project_id", "client_room_id", "start_at" ], "properties": { "project_id": { "type": "string" }, "start_at": { "type": "string" }, "client_room_id": { "type": "string" }, "moderator_id": { "type": "string" }, "max_participants": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, "empty_timeout": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, "metadata": { "type": "object", "properties": { "room_title": { "type": "string" }, "welcome_message": { "type": "string" } } } }, "examples": [ { "project_id": "{{projectId}}", "start_at": "2025-12-31T06:16", "client_room_id": "dasxzcxc", "moderator_id": "hisham", "max_participants": "20", "empty_timeout": "300", "metadata": { "room_title": "Test room", "welcome_message": "Welcome to room" } } ] }'{
"room_id": "12345",
"name": "Test Room",
"scheduled_time": "2024-06-01T10:00:00Z",
"max_participants": 10,
"metadata": {
"room_title": "Demo Room",
"welcome_message": "Welcome!"
}
}{
"error": "Invalid signature"
}curl -X POST "https://v.cloudapi.vconnct.me/api/v4/rooms/create_schedule_video_room" \
-H "Content-Type: application/json" \
-d '{
"type": "object",
"required": [
"project_id",
"client_room_id",
"start_at"
],
"properties": {
"project_id": {
"type": "string"
},
"start_at": {
"type": "string"
},
"client_room_id": {
"type": "string"
},
"moderator_id": {
"type": "string"
},
"max_participants": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"empty_timeout": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"metadata": {
"type": "object",
"properties": {
"room_title": {
"type": "string"
},
"welcome_message": {
"type": "string"
}
}
}
},
"examples": [
{
"project_id": "{{projectId}}",
"start_at": "2025-12-31T06:16",
"client_room_id": "dasxzcxc",
"moderator_id": "hisham",
"max_participants": "20",
"empty_timeout": "300",
"metadata": {
"room_title": "Test room",
"welcome_message": "Welcome to room"
}
}
]
}'