POST
/
v1
/
sessions
/
{session_id}
/
recordings
/
pause
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"
    }
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

session_id
string
required

The ID of the browser session for which to pause recording.

Response

200
application/json

Recording paused successfully.

The response is of type object.