Conferences let you connect multiple participants in a single call. Using the Conference API, you can manage ongoing conferences, control individual members, and record conversations.
Conferences are suited for traditional “meeting” use cases. For advanced contact center or sales dialer scenarios requiring more control, consider Multiparty Calls .
The Conference Object
Name used to identify the conference.
Time in seconds since the conference was initiated.
Number of members currently active in the conference.
Array of member objects in the conference.
Member Attributes
Each member in the members array has the following attributes:
Unique ID of the member within the conference.
true if the member is currently muted.
true if the member cannot hear conference audio.
Source of the call — PSTN number or SIP endpoint.
Conference bridge number — Plivo number or application URL.
Name of the caller (SIP calls only).
Direction of the call — inbound or outbound.
Unique identifier of the call.
Time in seconds since the member joined.
Example Conference Object
{
"conference_name" : "My Conf Room" ,
"conference_run_time" : "590" ,
"conference_member_count" : "1" ,
"members" : [
{
"muted" : false ,
"member_id" : "17" ,
"deaf" : false ,
"from" : "1456789903" ,
"to" : "1677889900" ,
"caller_name" : "John" ,
"direction" : "inbound" ,
"call_uuid" : "acfbf0b5-12e0-4d74-85f7-fce15f8f07ec" ,
"join_time" : "590"
}
]
}
Retrieve a Conference
Get details of a specific conference by name.
GET https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/
Arguments
No arguments required.
cURL
Python
Ruby
Node
PHP
Java
.NET
Go
curl -i --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.get( conference_name = 'My Conf Room' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . get ( 'My Conf Room' )
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . get ( "My Conf Room" ). then ( console . log );
<? php
require 'vendor/autoload.php' ;
use Plivo\ RestClient ;
$client = new RestClient ( "<auth_id>" , "<auth_token>" );
$response = $client -> conferences -> get ( 'My Conf Room' );
print_r ( $response );
import com.plivo.api.Plivo;
import com.plivo.api.models.conference.Conference;
Plivo . init ( "<auth_id>" , "<auth_token>" );
Conference response = Conference . getter ( "My Conf Room" ). get ();
System . out . println (response);
using Plivo ;
var api = new PlivoApi ( "<auth_id>" , "<auth_token>" );
var response = api . Conference . Get ( conferenceName : "My Conf Room" );
Console . WriteLine ( response );
package main
import " github.com/plivo/plivo-go/v7 "
func main () {
client , _ := plivo . NewClient ( "<auth_id>" , "<auth_token>" , & plivo . ClientOptions {})
response , _ := client . Conferences . Get ( "My Conf Room" )
}
Response
Name used to identify the conference.
Time in seconds since the conference was initiated.
Number of members currently active in the conference.
Unique identifier for the API request.
{
"conference_name" : "My Conf Room" ,
"conference_run_time" : "590" ,
"conference_member_count" : "1" ,
"members" : [
{
"muted" : false ,
"member_id" : "17" ,
"deaf" : false ,
"from" : "1456789903" ,
"to" : "1677889900" ,
"caller_name" : "John" ,
"direction" : "inbound" ,
"call_uuid" : "acfbf0b5-12e0-4d74-85f7-fce15f8f07ec" ,
"join_time" : "590"
}
],
"api_id" : "816e903e-58c4-11e1-86da-adf28403fe48"
}
List All Conferences
Retrieve names of all ongoing conferences in your account.
GET https://api.plivo.com/v1/Account/{auth_id}/Conference/
Arguments
No arguments required.
cURL
Python
Ruby
Node
PHP
Java
.NET
Go
curl -i --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.list()
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . list
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . list (). then ( console . log );
<? php
require 'vendor/autoload.php' ;
use Plivo\ RestClient ;
$client = new RestClient ( "<auth_id>" , "<auth_token>" );
$response = $client -> conferences -> list ();
print_r ( $response );
import com.plivo.api.Plivo;
import com.plivo.api.models.conference.Conference;
Plivo . init ( "<auth_id>" , "<auth_token>" );
ListResponse < Conference > response = Conference . lister (). list ();
System . out . println (response);
using Plivo ;
var api = new PlivoApi ( "<auth_id>" , "<auth_token>" );
var response = api . Conference . List ();
Console . WriteLine ( response );
package main
import " github.com/plivo/plivo-go/v7 "
func main () {
client , _ := plivo . NewClient ( "<auth_id>" , "<auth_token>" , & plivo . ClientOptions {})
response , _ := client . Conferences . List ( plivo . ConferenceListParams {})
}
Response
Unique identifier for the API request.
Array of names of all ongoing conferences in your account.
{
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48" ,
"conferences" : [
"My Conf Room" ,
"Sales Meeting" ,
"Support Call"
]
}
Hang Up a Conference
Terminate a conference and disconnect all members.
DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/
cURL
Python
Ruby
Node
PHP
Java
.NET
Go
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.delete( conference_name = 'My Conf Room' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . delete ( 'My Conf Room' )
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . hangup ( "My Conf Room" ). then ( console . log );
<? php
require 'vendor/autoload.php' ;
use Plivo\ RestClient ;
$client = new RestClient ( "<auth_id>" , "<auth_token>" );
$response = $client -> conferences -> delete ( 'My Conf Room' );
print_r ( $response );
import com.plivo.api.Plivo;
import com.plivo.api.models.conference.Conference;
Plivo . init ( "<auth_id>" , "<auth_token>" );
Conference . deleter ( "My Conf Room" ). delete ();
using Plivo ;
var api = new PlivoApi ( "<auth_id>" , "<auth_token>" );
var response = api . Conference . Delete ( conferenceName : "My Conf Room" );
Console . WriteLine ( response );
package main
import " github.com/plivo/plivo-go/v7 "
func main () {
client , _ := plivo . NewClient ( "<auth_id>" , "<auth_token>" , & plivo . ClientOptions {})
client . Conferences . Delete ( "My Conf Room" )
}
Response
Status of the request. Returns conference hung up on a successful request.
Unique identifier for the API request.
{
"message" : "conference hung up" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Hang Up All Conferences
Terminate all ongoing conferences in your account.
DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.delete_all()
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . delete_all
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . hangupAll (). then ( console . log );
Response
Status of the request. Returns all conferences hung up on a successful request.
Unique identifier for the API request.
{
"message" : "all conferences hung up" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Member Operations
Control individual members within a conference. The member_id parameter can be:
A specific member ID (e.g., 10)
A comma-separated list (e.g., 10,11,12)
The string all to affect all members
Kick a Member
Disconnect a member from the conference.
POST https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Kick/
curl -i --user AUTH_ID:AUTH_TOKEN \
-H "Content-Type: application/json" \
-d '{}' \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Kick/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_kick( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . kick_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . kickMember ( "My Conf Room" , 10 ). then ( console . log );
Response
Status of the request. Returns kicked on a successful request.
Unique ID of the member within the conference.
Unique identifier for the API request.
{
"message" : "kicked" ,
"member_id" : "10" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Mute / Unmute a Member
Mute a member so other participants cannot hear them. POST https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/
curl -i --user AUTH_ID:AUTH_TOKEN \
-H "Content-Type: application/json" \
-d '{}' \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_mute( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . mute_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . muteMember ( "My Conf Room" , 10 ). then ( console . log );
Response Status of the request. Returns muted on a successful request.
Unique ID of the member within the conference.
Unique identifier for the API request.
{
"message" : "muted" ,
"member_id" : "10" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Unmute a previously muted member. DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_unmute( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . unmute_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . unmuteMember ( "My Conf Room" , 10 ). then ( console . log );
Response Status of the request. Returns unmuted on a successful request.
Unique ID of the member within the conference.
Unique identifier for the API request.
{
"message" : "unmuted" ,
"member_id" : "10" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Deaf / Undeaf a Member
Make a member deaf so they cannot hear conference audio. POST https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Deaf/
curl -i --user AUTH_ID:AUTH_TOKEN \
-H "Content-Type: application/json" \
-d '{}' \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Deaf/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_deaf( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . deaf_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . deafMember ( "My Conf Room" , 10 ). then ( console . log );
Response Status of the request. Returns deaf on a successful request.
Unique ID of the member within the conference.
Unique identifier for the API request.
{
"message" : "deaf" ,
"member_id" : "10" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Restore hearing to a deaf member. DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Deaf/
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Deaf/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_undeaf( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . enable_hearing_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . undeafMember ( "My Conf Room" , 10 ). then ( console . log );
Response Status of the request. Returns undeaf on a successful request.
Unique ID of the member within the conference.
Unique identifier for the API request.
{
"message" : "undeaf" ,
"member_id" : "10" ,
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48"
}
Play Audio to a Member
Start Playing
Stop Playing
Play an audio file to specific members. POST https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Play/
Parameter Required Description urlYes URL of the .mp3 or .wav file to play.
curl -i --user AUTH_ID:AUTH_TOKEN \
-H "Content-Type: application/json" \
-d '{"url":"https://s3.amazonaws.com/plivocloud/music.mp3"}' \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Play/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_play(
conference_name = 'My Conf Room' ,
member_id = '10' ,
url = 'https://s3.amazonaws.com/plivocloud/music.mp3' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . play_member (
'My Conf Room' ,
[ 10 ],
'https://s3.amazonaws.com/plivocloud/music.mp3' )
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . playAudioToMember (
"My Conf Room" ,
10 ,
"https://s3.amazonaws.com/plivocloud/music.mp3"
). then ( console . log );
Response Status of the request. Returns play queued into conference on a successful request.
Unique identifier for the API request.
Unique ID of the member within the conference.
{
"message" : "play queued into conference" ,
"api_id" : "4e44bd4e-f830-11e6-b886-067c5485c240" ,
"member_id" : "10"
}
Stop playing audio to members. DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Play/
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Play/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_play_stop( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . stop_play_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . stopPlayingAudioToMember ( "My Conf Room" , 10 ). then ( console . log );
Speak Text to a Member
Start Speaking
Stop Speaking
Speak text to specific members using text-to-speech. POST https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Speak/
Parameter Required Description textYes Text to speak. voiceNo Voice type. Values: MAN, WOMAN. Default: WOMAN. languageNo Language code. Default: en-US.
curl -i --user AUTH_ID:AUTH_TOKEN \
-H "Content-Type: application/json" \
-d '{"text":"Hello, welcome to the conference"}' \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Speak/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_speak(
conference_name = 'My Conf Room' ,
member_id = '10' ,
text = 'Hello, welcome to the conference' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . speak_member (
'My Conf Room' ,
[ 10 ],
'Hello, welcome to the conference' )
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . speakTextToMember (
"My Conf Room" ,
10 ,
"Hello, welcome to the conference"
). then ( console . log );
Response Status of the request. Returns speak queued into conference on a successful request.
Unique identifier for the API request.
Unique ID of the member within the conference.
{
"message" : "speak queued into conference" ,
"api_id" : "4e44bd4e-f830-11e6-b886-067c5485c240" ,
"member_id" : "10"
}
Stop speaking text to members. DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Speak/
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Speak/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.member_speak_stop( conference_name = 'My Conf Room' , member_id = '10' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . stop_speak_member ( 'My Conf Room' , [ 10 ])
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . stopSpeakingTextToMember ( "My Conf Room" , 10 ). then ( console . log );
Record a Conference
Start Recording
Stop Recording
Start recording an ongoing conference. POST https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Record/
Arguments Parameter Description file_formatRecording format. Values: mp3, wav. Default: mp3. transcription_typeSet to auto for automated transcription. transcription_urlURL to receive transcription results. callback_urlURL invoked when recording ends. callback_methodHTTP verb for callback_url. Default: POST.
Parameter Description api_idAPI ID returned by the record API. record_urlURL where the recorded file can be accessed. recording_idRecording ID associated with the file. conference_nameName of the recorded conference. recording_durationDuration in seconds. recording_duration_msDuration in milliseconds. recording_start_msStart time (epoch ms). recording_end_msEnd time (epoch ms).
cURL
Python
Ruby
Node
PHP
Java
.NET
Go
curl -i --user AUTH_ID:AUTH_TOKEN \
-H "Content-Type: application/json" \
-d '{"file_format":"mp3"}' \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Record/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.record( conference_name = 'My Conf Room' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . record ( 'My Conf Room' )
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . record ( "My Conf Room" ). then ( console . log );
<? php
require 'vendor/autoload.php' ;
use Plivo\ RestClient ;
$client = new RestClient ( "<auth_id>" , "<auth_token>" );
$response = $client -> conferences -> startRecording ( 'My Conf Room' );
print_r ( $response );
import com.plivo.api.Plivo;
import com.plivo.api.models.conference.Conference;
Plivo . init ( "<auth_id>" , "<auth_token>" );
ConferenceRecordCreateResponse response = Conference . recorder ( "My Conf Room" ). record ();
System . out . println (response);
using Plivo ;
var api = new PlivoApi ( "<auth_id>" , "<auth_token>" );
var response = api . Conference . StartRecording ( "My Conf Room" );
Console . WriteLine ( response );
package main
import " github.com/plivo/plivo-go/v7 "
func main () {
client , _ := plivo . NewClient ( "<auth_id>" , "<auth_token>" , & plivo . ClientOptions {})
response , _ := client . Conferences . Record ( "My Conf Room" , plivo . ConferenceRecordParams {})
}
Response Unique identifier for the API request.
Status of the request. Returns conference recording started on a successful request.
Recording ID associated with the file.
URL where the recorded file can be accessed.
{
"api_id" : "2867b6e2-58c3-11e1-86da-adf28403fe48" ,
"message" : "conference recording started" ,
"recording_id" : "93bc7c6a-3b2b-11e3" ,
"url" : "https://media.plivo.com/v1/Account/<Auth_ID>/Recording/93bc7c6a-3b2b-11e3.mp3"
}
Stop recording a conference. DELETE https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Record/
cURL
Python
Ruby
Node
PHP
Java
.NET
Go
curl -X DELETE --user AUTH_ID:AUTH_TOKEN \
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Record/
import plivo
client = plivo.RestClient( '<auth_id>' , '<auth_token>' )
response = client.conferences.record_stop( conference_name = 'My Conf Room' )
print (response)
require 'plivo'
api = Plivo :: RestClient . new ( "<auth_id>" , "<auth_token>" )
response = api. conferences . stop_record ( 'My Conf Room' )
puts response
const plivo = require ( 'plivo' );
const client = new plivo . Client ( "<auth_id>" , "<auth_token>" );
client . conferences . stopRecording ( "My Conf Room" ). then ( console . log );
<? php
require 'vendor/autoload.php' ;
use Plivo\ RestClient ;
$client = new RestClient ( "<auth_id>" , "<auth_token>" );
$response = $client -> conferences -> stopRecording ( 'My Conf Room' );
print_r ( $response );
import com.plivo.api.Plivo;
import com.plivo.api.models.conference.Conference;
Plivo . init ( "<auth_id>" , "<auth_token>" );
Conference . recordStopper ( "My Conf Room" ). stop ();
using Plivo ;
var api = new PlivoApi ( "<auth_id>" , "<auth_token>" );
var response = api . Conference . StopRecording ( "My Conf Room" );
Console . WriteLine ( response );
package main
import " github.com/plivo/plivo-go/v7 "
func main () {
client , _ := plivo . NewClient ( "<auth_id>" , "<auth_token>" , & plivo . ClientOptions {})
client . Conferences . RecordStop ( "My Conf Room" )
}
Response