Node.js / Plivo REST API / Retrieve a Multi-Party Call
Back to Collection Items
var os = require('os');
if (os.platform() == 'win32') {
if (os.arch() == 'ia32') {
var chilkat = require('@chilkat/ck-node21-win-ia32');
} else {
var chilkat = require('@chilkat/ck-node21-win64');
}
} else if (os.platform() == 'linux') {
if (os.arch() == 'arm') {
var chilkat = require('@chilkat/ck-node21-arm');
} else if (os.arch() == 'x86') {
var chilkat = require('@chilkat/ck-node21-linux32');
} else {
var chilkat = require('@chilkat/ck-node21-linux64');
}
} else if (os.platform() == 'darwin') {
if (os.arch() == 'arm64') {
var chilkat = require('@chilkat/ck-node21-mac-m1');
} else {
var chilkat = require('@chilkat/ck-node21-macosx');
}
}
function chilkatExample() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
var http = new chilkat.Http();
var success;
http.BasicAuth = true;
http.Login = "{{auth_id}}";
http.Password = "password";
var queryParams = new chilkat.JsonObject();
queryParams.UpdateString("phlo_id","<PHLO_ID>");
queryParams.UpdateString("node_id","<NODE_ID>");
// resp: HttpResponse
var resp = http.QuickRequestParams("GET","https://phlorunner.plivo.com/v1/phlo/{phlo_id}/multi_party_call/{node_id}",queryParams);
if (http.LastMethodSuccess == false) {
console.log(http.LastErrorText);
return;
}
console.log(resp.StatusCode);
console.log(resp.BodyStr);
}
chilkatExample();
Curl Command
curl -G -d "phlo_id=%3CPHLO_ID%3E"
-d "node_id=%3CNODE_ID%3E"
-u '{{auth_id}}:password'
https://phlorunner.plivo.com/v1/phlo/{phlo_id}/multi_party_call/{node_id}
Postman Collection Item JSON
{
"name": "Retrieve a Multi-Party Call",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://phlorunner.plivo.com/v1/phlo/{phlo_id}/multi_party_call/{node_id}?phlo_id=<PHLO_ID>&node_id=<NODE_ID>",
"protocol": "https",
"host": [
"phlorunner",
"plivo",
"com"
],
"path": [
"v1",
"phlo",
"{phlo_id}",
"multi_party_call",
"{node_id}"
],
"query": [
{
"key": "phlo_id",
"value": "<PHLO_ID>",
"description": "Unique identifier for the PHLO."
},
{
"key": "node_id",
"value": "<NODE_ID>",
"description": "Unique identifier for the node. Node ID is available in the configuration section of the corresponding Multi-Party Call node in the PHLO"
}
]
},
"description": "More information can be found [here](https://www.plivo.com/docs/phlo/api/phlo/multi-party-call#the-multipartycall-object)"
},
"response": [
{
"name": "Retrieve a Multi-Party Call",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://phlorunner.plivo.com/v1/phlo/{phlo_id}/multi_party_call/{node_id}?phlo_id=<PHLO_ID>&node_id=<NODE_ID>",
"protocol": "https",
"host": [
"phlorunner",
"plivo",
"com"
],
"path": [
"v1",
"phlo",
"{phlo_id}",
"multi_party_call",
"{node_id}"
],
"query": [
{
"key": "phlo_id",
"value": "<PHLO_ID>",
"description": "Unique identifier for the PHLO."
},
{
"key": "node_id",
"value": "<NODE_ID>",
"description": "Unique identifier for the node. Node ID is available in the configuration section of the corresponding Multi-Party Call node in the PHLO"
}
]
}
},
"code": 200,
"_postman_previewlanguage": "json",
"header": [
],
"cookie": [
],
"body": "{\n \"api_id\": \"2163e3fb-d6d0-46fb-a4ce-2d24a6b0b89f\",\n \"node_id\": \"b4b48fc2-f47a-4a93-97c3-749ed9a40fa8\",\n \"phlo_id\": \"73d6ab01-a2f6-4a84-850f-21e1d46b30bf\",\n \"name\": \"Multi-Party Call_1\",\n \"node_type\": \"multi_party_call\",\n \"created_on\": \"2018-08-01 09:05:11.846982+00:00\"\n}"
}
]
}