Allows you to retrieve details of a specific multiparty call.
API Endpoint
https: //api.plivo.com/v1/Account/{auth_id}/MultiPartyCall/name_{mpc_name}/
Arguments
No arguments need to be passed.
Returns
Returns the details of the specific multiparty call.
You can fetch the details of an MPC using its name only for an ongoing multiparty call. For details of a call that has ended, specify the UUID instead of the name.
Python
Ruby
Node
PHP
Java
.NET
Go
cURL
import plivo
client = plivo.RestClient( auth_id = "<auth_id>" , auth_token = "<auth_token>" )
response = client.multi_party_calls.get( "6bce28b8-ca38-4998-bd05-25fd8ed0f227" )
print (response)
{
"api_id" : "3c45f7da-45c9-11eb-8575-0242ac11000a" ,
"billed_amount" : null ,
"billed_duration" : null ,
"creation_time" : "2020-12-24 09:20:03+00:00" ,
"duration" : null ,
"end_time" : null ,
"friendly_name" : "test_mpc" ,
"mpc_uuid" : "8742d531-292a-46aa-8754-836be1092885" ,
"participants" : "/v1/Account/MAOTE1OWE0MDK0MTLHYW/MultiPartyCall/name_test_mpc/Participant/" ,
"recording" : "not-recording" ,
"resource_uri" : "/v1/Account/MAOTE1OWE0MDK0MTLHYW/MultiPartyCall/name_test_mpc/" ,
"start_time" : "2020-12-24 09:20:03+00:00" ,
"status" : "Active" ,
"stay_alone" : false ,
"sub_account" : null ,
"termination_cause" : null ,
"termination_cause_code" : null
}