delete_profile
Remove a specific Hyperbrowser profile by its ID to manage user data and optimize storage within the AI-driven browser automation platform.
Instructions
Deletes an existing persistent Hyperbrowser profile.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
profileId | Yes | ID of the profile to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"profileId": {
"description": "ID of the profile to delete",
"type": "string"
}
},
"required": [
"profileId"
],
"type": "object"
}