from notte_sdk import NotteClient
notte = NotteClient()
# Create a profile first
profile = notte.profiles.create(name="test-profile")
# Get the profile by ID
retrieved = notte.profiles.get(profile.profile_id)
print(f"Profile: {retrieved.profile_id}, name: {retrieved.name}")
# 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 profile first
profile = notte.profiles.create(name="test-profile")
# Get the profile by ID
retrieved = notte.profiles.get(profile.profile_id)
print(f"Profile: {retrieved.profile_id}, name: {retrieved.name}")
# 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.
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