DELETE
/
browsers
import Kernel from '@onkernel/sdk';

const client = new Kernel({
  apiKey: process.env['KERNEL_API_KEY'], // This is the default and can be omitted
});

await client.browsers.delete({ persistent_id: 'persistent_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.

Query Parameters

persistent_id
string
required

Persistent browser identifier

Response

204

Browser session deleted successfully