Skip to main content
Version: /v2

Stop Recording

This API lets you stop recording of your room by passing roomId as a body parameter.
Body Parameters
REQUIRED
The ID of the Room.
POST
|
https://api.videosdk.live/v2/recordings/end
import fetch from 'node-fetch';
const options = {
method: "POST",
headers: {
"Authorization": "$YOUR_TOKEN",
"Content-Type": "application/json",
},
body: JSON.stringify({"roomId" : "xyz"}),
};
const url= `https://api.videosdk.live/v2/recordings/end`;
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
RESPONSE
"Recording ended successfully"