POST
/
browsers
/
{id}
/
replays
/
{replay_id}
/
stop
JavaScript
import Kernel from '@onkernel/sdk';

const client = new Kernel({
  apiKey: 'My API Key',
});

await client.browsers.replays.stop('replay_id', { id: 'id' });
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Browser session ID

replay_id
string
required

Replay recording identifier

Response

200

Recording stopped successfully.