Skip to main content
Aborts a call transfer.

API Endpoint

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

Arguments

URL Params

ParamTypeDescription
phlo_id (Required)stringUnique identifier of the PHLO. PHLO IDs are listed on the PHLO page of the console.
node_id (Required)stringUnique identifier of 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 initiating the transfer.

Payload

ParamDescription/Allowed Values
action
Required
string

Value is always abort_transfer.

Returns

Returns a Member object.
import plivo

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

response = phlo.multi_party_call(node_id).member(member_address).abort_transfer()
print str(response)
{
    "api_id": "11d8c251-d7bf-4aba-9763-985f21bcb455",
    "error": ""
}