Javascript
import Anchorbrowser from 'anchorbrowser'; const client = new Anchorbrowser({ apiKey: 'My API Key', }); const response = await client.sessions.recordings.pause('session_id'); console.log(response.data);
{ "data": { "data": { "status": "success" } } }
Pauses the video recording for the specified browser session.
API key passed in the header
The ID of the browser session for which to pause recording.
Recording paused successfully.
The response is of type object.
object