phpExt / Plivo REST API / Play audio to a member
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$http->put_BasicAuth(true);
$http->put_Login('{{auth_id}}');
$http->put_Password('password');
// resp is a CkHttpResponse
$resp = $http->QuickRequest('POST','https://api.plivo.com/v1/Account/<auth_id>/Conference/{conference_name}/Member/{member_id}/Play/');
if ($http->get_LastMethodSuccess() == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
Curl Command
curl -X POST
-u '{{auth_id}}:password'
https://api.plivo.com/v1/Account/<auth_id>/Conference/{conference_name}/Member/{member_id}/Play/
Postman Collection Item JSON
{
"name": "Play audio to a member",
"request": {
"method": "POST",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Conference/{conference_name}/Member/{member_id}/Play/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Conference",
"{conference_name}",
"Member",
"{member_id}",
"Play",
""
]
},
"description": "This API lets you play a mp3 or a wav file to a member in the conference.\n\nBelow is the list of arguments that can be passed in this API request, more information can be found [here](https://www.plivo.com/docs/voice/api/conference/member#play-audio-to-a-member)\n\n| Arguments | Description | Required/Conditional/Optional |\n| :--- | :----: | ---: |\n| url | URL of the sound file to be played.| Required |"
},
"response": [
{
"name": "Play audio to a member",
"originalRequest": {
"method": "POST",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Conference/{conference_name}/Member/{member_id}/Play/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Conference",
"{conference_name}",
"Member",
"{member_id}",
"Play",
""
]
}
},
"code": 202,
"_postman_previewlanguage": "json",
"header": [
],
"cookie": [
],
"body": "{\n \"message\": \"play queued into conference\",\n \"api_id\": \"4e44bd4e-f830-11e6-b886-067c5485c240\",\n \"member_id\": \"[u'160005', u'160004', u'160003', u'160002']\"\n}"
}
]
}