import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.list()
print(response)
HTTP Status Code: 204

Conferences let you involve multiple participants in a single call. Using Plivo’s Conference API, you can manage ongoing and completed conferences in your account, terminate ongoing conferences, and retrieve details of an ongoing or completed conference.

Conferences are suited for traditional “meeting” use cases. If you need more control over a call, for example for advanced contact center or sales dialer use cases, consider multiparty calls.

API Endpoint

BaseURI
https://api.plivo.com/v1/Account/{auth_id}/Conference/

Hang up all conferences

This API lets you hang up all ongoing conferences running on your account.

API Endpoint

DELETE
https://api.plivo.com/v1/Account/{auth_id}/Conference/

Arguments

No arguments need to be passed.

import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.list()
print(response)
HTTP Status Code: 204