API ReferenceRoomsFetch_past_rooms
Fetch past rooms
Fetch previously created/finished rooms.
Fetch previously created/finished rooms.
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
"ASC" | "DESC"application/json
application/json
curl -X POST "https://v.cloudapi.vconnct.me/api/v4/rooms/fetch_past_rooms" \ -H "Content-Type: application/json" \ -d '{ "type": "object", "properties": { "room_ids": { "type": "array", "items": { "type": "string" } }, "from": { "type": "integer" }, "limit": { "type": "integer" }, "order_by": { "type": "string", "enum": [ "ASC", "DESC" ] } }, "examples": [ { "room_ids": [ "141513" ], "from": 0, "limit": 10, "order_by": "DESC" } ] }'{
"rooms": [
{
"room_id": "141513",
"status": "finished"
}
]
}{
"error": "Invalid signature"
}curl -X POST "https://v.cloudapi.vconnct.me/api/v4/rooms/fetch_past_rooms" \
-H "Content-Type: application/json" \
-d '{
"type": "object",
"properties": {
"room_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"from": {
"type": "integer"
},
"limit": {
"type": "integer"
},
"order_by": {
"type": "string",
"enum": [
"ASC",
"DESC"
]
}
},
"examples": [
{
"room_ids": [
"141513"
],
"from": 0,
"limit": 10,
"order_by": "DESC"
}
]
}'