import plivo

client = plivo.RestClient(auth_id="<auth_id>", auth_token="<auth_token>")

response = client.multi_party_calls.start(friendly_name='mpc_name')
print(response)
HTTP Status Code: 204

You can trigger this request to activate an MPC initialized with at least one participant.

This API is only used to activate an MPC that is created in initialized state with one or more participants (participants with start_mpc_on_enter set to false). To start a new MPC, use Add a Participant API or MPC XML.

API Endpoint

POST
https://api.plivo.com/v1/Account/{auth_id}/MultiPartyCall/name_{mpc_name}/

Arguments

statusCurrent status of the MPC. Allowed value: Active.

Returns

Returns 404 Not Found if the MPC is not found for the given name or UUID in the initiated state. Else, returns 204 without content.

import plivo

client = plivo.RestClient(auth_id="<auth_id>", auth_token="<auth_token>")

response = client.multi_party_calls.start(friendly_name='mpc_name')
print(response)
HTTP Status Code: 204