Skip to main content
POST
/
v1
/
profiles
/
{id}
/
stop
Stop Profile
curl --request POST \
  --url https://api.bctrl.ai/v1/profiles/{id}/stop \
  --header 'Authorization: Bearer <token>'
id
string
required
Profile ID.

Examples

import { Bctrl } from '@bctrl/sdk';
const bctrl = new Bctrl({ apiKey: process.env.BCTRL_API_KEY! });

// Named-browser API
await bctrl.browser('my-browser').stop();

// Raw profiles API
await bctrl.profiles.stop('prof_abc123');

Errors

CodeDescription
404Profile not found