Stop Recording a Multiparty Call
This endpoint stops recording a Multiparty Call.
API Endpoint
DELETE
https://api.plivo.com/v1/Account/{auth_id}/MultiPartyCall/name_{mpc_name}/Record/
Arguments
No arguments need to be passed.
Returns
Returns an acknowledgement that the recording has been stopped.
Response
HTTP Status Code: 204
Example Request
1
2
3
4
5
6
| import plivo
client = plivo.RestClient(auth_id="<auth_id>", auth_token="<auth_token>")
response = client.multi_party_calls.stop_recording(friendly_name='mpc_name')
print(response)
|
1
2
3
4
5
6
7
8
9
10
11
12
| require 'rubygems'
require 'plivo'
include Plivo
include Plivo::Exceptions
api = RestClient.new("<auth_id>","<auth_token>")
begin
response = api.multipartycalls.stop_recording("friendly_name":"mpc_name")
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
|
1
2
3
4
5
6
7
8
9
10
11
12
| var plivo = require('plivo');
(function main() {
'use strict';
var client = new plivo.Client("<auth_id>","<auth_token>");
client.multiPartyCalls.stopRecording('mpc_name').then(function (response) {
console.log(response);
}, function (err) {
console.error(err);
});
})();
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <?php
require 'vendor/autoload.php';
use Plivo\RestClient;
use Plivo\Exceptions\PlivoRestException;
$client = new RestClient("<auth_id>", "<auth_token>");
try
{
$response = $client
->multiPartyCalls
->stopRecording(["friendly_name" => "mpc_name", ]);
print_r($response);
}
catch(PlivoRestException $ex)
{
print_r($ex);
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.plivo.examples.multipartycall;
import com.plivo.api.Plivo;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.exceptions.PlivoValidationException;
import com.plivo.api.models.multipartycall.MultiPartyCall;
import com.plivo.api.models.multipartycall.MultiPartyCallUtils;
import java.io.IOException;
public class StopMPCRecording {
public static void main(String[] args) throws IOException, PlivoRestException, PlivoValidationException {
Plivo.init("<auth_id>", "<auth_token>");
try
{
MultiPartyCall.recordStopper(MultiPartyCallUtils.friendlyName("myRecordingMPC1")).delete();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| using System;
using Plivo;
using Plivo.Exception;
namespace PlivoExamples
{
class Program
{
static void Main(string[] args)
{
var api = new PlivoApi("<auth_id>", "<auth_token>");
try
{
var response = api.MultiPartyCall.StopRecording(friendlyName: "mpc_name");
Console.WriteLine(response);
}
catch (PlivoRestException e)
{
Console.WriteLine("Exception: " + e.Message);
}
}
}
}
|
1
2
| curl -i --user AUTH_ID:AUTH_TOKEN -X DELETE \
https://api.plivo.com/v1/Account/{auth_id}/MultiPartyCall/name_{mpc_name}/Record/
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package main
import (
"fmt"
"github.com/plivo/plivo-go/v7"
)
func main() {
client, err := plivo.NewClient("<auth_id>", "<auth_token>", &plivo.ClientOptions{})
if err != nil {
fmt.Print("Error", err.Error())
return
}
err = client.MultiPartyCall.StopRecording(plivo.MultiPartyCallBasicParams{FriendlyName: "MPC_Name"})
if err != nil {
fmt.Print("Error", err.Error())
return
}
fmt.Printf("MPC recording stopped")
}
|
Example Request
1
2
3
4
5
6
| import plivo
client = plivo.RestClient(auth_id="<auth_id>", auth_token="<auth_token>")
response = client.multi_party_calls.stop_recording(friendly_name='mpc_name')
print(response)
|
1
2
3
4
5
6
7
8
9
10
11
12
| require 'rubygems'
require 'plivo'
include Plivo
include Plivo::Exceptions
api = RestClient.new("<auth_id>","<auth_token>")
begin
response = api.multipartycalls.stop_recording("friendly_name":"mpc_name")
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
|
1
2
3
4
5
6
7
8
9
10
11
12
| var plivo = require('plivo');
(function main() {
'use strict';
var client = new plivo.Client("<auth_id>","<auth_token>");
client.multiPartyCalls.stopRecording('mpc_name').then(function (response) {
console.log(response);
}, function (err) {
console.error(err);
});
})();
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <?php
require 'vendor/autoload.php';
use Plivo\RestClient;
use Plivo\Exceptions\PlivoRestException;
$client = new RestClient("<auth_id>", "<auth_token>");
try
{
$response = $client
->multiPartyCalls
->stopRecording(["friendly_name" => "mpc_name", ]);
print_r($response);
}
catch(PlivoRestException $ex)
{
print_r($ex);
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.plivo.examples.multipartycall;
import com.plivo.api.Plivo;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.exceptions.PlivoValidationException;
import com.plivo.api.models.multipartycall.MultiPartyCall;
import com.plivo.api.models.multipartycall.MultiPartyCallUtils;
import java.io.IOException;
public class StopMPCRecording {
public static void main(String[] args) throws IOException, PlivoRestException, PlivoValidationException {
Plivo.init("<auth_id>", "<auth_token>");
try
{
MultiPartyCall.recordStopper(MultiPartyCallUtils.friendlyName("myRecordingMPC1")).delete();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| using System;
using Plivo;
using Plivo.Exception;
namespace PlivoExamples
{
class Program
{
static void Main(string[] args)
{
var api = new PlivoApi("<auth_id>", "<auth_token>");
try
{
var response = api.MultiPartyCall.StopRecording(friendlyName: "mpc_name");
Console.WriteLine(response);
}
catch (PlivoRestException e)
{
Console.WriteLine("Exception: " + e.Message);
}
}
}
}
|
1
2
| curl -i --user AUTH_ID:AUTH_TOKEN -X DELETE \
https://api.plivo.com/v1/Account/{auth_id}/MultiPartyCall/name_{mpc_name}/Record/
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package main
import (
"fmt"
"github.com/plivo/plivo-go/v7"
)
func main() {
client, err := plivo.NewClient("<auth_id>", "<auth_token>", &plivo.ClientOptions{})
if err != nil {
fmt.Print("Error", err.Error())
return
}
err = client.MultiPartyCall.StopRecording(plivo.MultiPartyCallBasicParams{FriendlyName: "MPC_Name"})
if err != nil {
fmt.Print("Error", err.Error())
return
}
fmt.Printf("MPC recording stopped")
}
|
🥳 Thank you! It means a lot to us!
Help Us Improve
Thank you so much for rating the page, we would like to get your input
for further improvements!
Thank you for your feedback!