import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.get(
    conference_name='testing', )
print(response)
{
  "conference_name": "My Conf Room",
  "conference_run_time": "590",
  "conference_member_count": "1",
  "members": [
	{
	  "muted" : false,
	  "member_id" : "17",
	  "deaf" : false,
	  "from" : "1456789903",
	  "to" : "1677889900",
	  "caller_name" : "John",
	  "direction" : "inbound",
	  "call_uuid" : "acfbf0b5-12e0-4d74-85f7-fce15f8f07ec",
	  "join_time" : "590"
	}
  ],
  "api_id": "816e903e-58c4-11e1-86da-adf28403fe48"
}

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/

Retrieve a conference

Retrieves the details of a particular conference.

API Endpoint

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

Arguments

No arguments need to be passed.

Returns

Returns the details of the conference associated with the name specified.

import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.get(
    conference_name='testing', )
print(response)
{
  "conference_name": "My Conf Room",
  "conference_run_time": "590",
  "conference_member_count": "1",
  "members": [
	{
	  "muted" : false,
	  "member_id" : "17",
	  "deaf" : false,
	  "from" : "1456789903",
	  "to" : "1677889900",
	  "caller_name" : "John",
	  "direction" : "inbound",
	  "call_uuid" : "acfbf0b5-12e0-4d74-85f7-fce15f8f07ec",
	  "join_time" : "590"
	}
  ],
  "api_id": "816e903e-58c4-11e1-86da-adf28403fe48"
}