Tenant Meet Me Conferencing¶
Retrieve the Meet-Me Conferencing allocated ports at tenant level¶
-
GET
/api/v1/tenants/
(string: tenant_id)/features/meet_me_conf/
¶ Retrieve the number of allocated ports for the Meet-Me Conferencing feature at tenant level.
Authorization rights: minimum Tenant Admin.
Example request:
GET /api/v1/tenants/fooTenant/features/meet_me_conf/ HTTP/1.1 Host: example.com
Example response:
HTTP/1.1 200 OK Content-Type: "application/json" { "allocatedPorts": { "unlimited": false, "quantity": 3 } }
- Response JSON Object:
allocatedPorts (object) – Number of conference ports. Can either be unlimited or limited Tenant meet me conferencing ports attributes.
- Status Codes:
200 OK – no error
Update the Meet-Me Conferencing allocated ports at tenant level¶
-
PUT
/api/v1/tenants/
(string: tenant_id)/features/meet_me_conf/
¶ Update the number of allocated ports for the Meet-Me Conferencing feature at tenant level.
Authorization rights: minimum System Admin.
Example request:
PUT /api/v1/tenants/fooTenant/features/meet_me_conf/ HTTP/1.1 Host: example.com Content-Type: "application/json" { "allocatedPorts": { "unlimited": false, "quantity": 3 } }
or
HTTP/1.1 200 Ok Content-Type: "application/json" { "allocatedPorts": { "quantity": 3 } }
or
HTTP/1.1 200 Ok Content-Type: "application/json" { "allocatedPorts": { "unlimited": true } }
- Request JSON Object:
allocatedPorts (object) – Number of conference ports. Can either be unlimited or limited Tenant meet me conferencing ports attributes.
Example response:
HTTP/1.1 200 OK
- Status Codes:
200 OK – no error
invalid request due to invalid parameters, with possible sub error codes:
18 INVALID_OPERATION, ‘Number of ports must be unlimited.’. May occur if at group level the allocated ports are set to unlimited.