Skip to content

Show Temporary Room usage summary

GET
/api/v1/external/rooms/usage

Available to the authenticated standard user, via webapp session or an API token with temporary-rooms:read.

object
data
object
limits
object
active_limit
integer
5
monthly_creation_limit
integer
50
usage
object
active_room_count
integer
1
monthly_creation_count
integer
2
abuse_signals
object
active_limit_reached
boolean
monthly_creation_limit_reached
boolean
{
"data": {
"limits": {
"active_limit": 5,
"monthly_creation_limit": 50
},
"usage": {
"active_room_count": 1,
"monthly_creation_count": 2
},
"abuse_signals": {
"active_limit_reached": false,
"monthly_creation_limit_reached": false
}
}
}