Skip to main content
Removes the hold placed on a member of a multiparty call.

API Endpoint

POST
https://phlorunner.plivo.com/v1/phlo/{phlo_id}/multi_party_call/{node_id}/members/{member_address}

Arguments

URL Params

ParamTypeDescription/Allowed Values
phlo_id (Required)stringUnique identifier for the PHLO. PHLO IDs are listed on the PHLO page of the console.
node_id (Required)stringUnique identifier for the node, which is available in the configuration section of the corresponding multiparty call node in the PHLO.
member_address (Required)Phone number or SIP endpoint address of the member to unhold.

Payload

ParamDescription/Allowed Values
action
Required
string

Value is always unhold.

Returns

Returns a Member object.
import plivo

auth_id = '<auth_id>'
auth_token = '<auth_token>'
phlo_id = '<phlo_id>'
node_id = '<node_id>'
phlo_client = plivo.phlo.RestClient(auth_id=auth_id, auth_token=auth_token)
phlo = phlo_client.phlo.get(phlo_id)

member_address = '<member_id>'

response = phlo.multi_party_call(node_id).member(member_address).unhold()

print str(response)

Response

HTTP Status Code: 201
{
    "api_id": "11d8c251-d7bf-4aba-9763-985f21bcb455",
    "error": ""
}