from notte_sdk import NotteClient
notte = NotteClient()
# Create a new browser profile with a name
profile = notte.profiles.create(name="my-profile")
print(f"Created profile: {profile.profile_id}")
# Cleanup
_ = notte.profiles.delete(profile.profile_id){
"profile_id": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"persisted_domains": [
"<string>"
]
}from notte_sdk import NotteClient
notte = NotteClient()
# Create a new browser profile with a name
profile = notte.profiles.create(name="my-profile")
print(f"Created profile: {profile.profile_id}")
# Cleanup
_ = notte.profiles.delete(profile.profile_id){
"profile_id": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"persisted_domains": [
"<string>"
]
}The access token received from the authorization server in the OAuth 2.0 flow.
Name of the profile
Successful Response
Profile ID (format: notte-profile-{16 hex chars})
Profile name
Profile creation timestamp
Profile last update timestamp
List of domains with persisted browser state (cookies, localStorage, sessionStorage)
Was this page helpful?
Suggestions