Skip to main content
DELETE
/
profiles
/
{profile_id}
python
from notte_sdk import NotteClient

notte = NotteClient()
# Create a profile first
profile = notte.profiles.create(name="profile-to-delete")
# Delete the profile
deleted = notte.profiles.delete(profile.profile_id)
print(f"Profile deleted: {deleted}")
{
  "success": true,
  "message": "Profile deleted successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.notte.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

x-notte-request-origin
string | null
x-notte-sdk-version
string | null

Path Parameters

profile_id
string
required

Response

Successful Response

success
boolean
default:true
message
string
default:Profile deleted successfully