from notte_sdk import NotteClient
notte = NotteClient()
# List all profiles with pagination
profiles = notte.profiles.list(page=1, page_size=10)
for profile in profiles:
print(f"Profile: {profile.profile_id}, name: {profile.name}"){
"items": [
{
"profile_id": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"persisted_domains": [
"<string>"
]
}
],
"page": 123,
"page_size": 123,
"has_next": true,
"has_previous": true
}from notte_sdk import NotteClient
notte = NotteClient()
# List all profiles with pagination
profiles = notte.profiles.list(page=1, page_size=10)
for profile in profiles:
print(f"Profile: {profile.profile_id}, name: {profile.name}"){
"items": [
{
"profile_id": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"persisted_domains": [
"<string>"
]
}
],
"page": 123,
"page_size": 123,
"has_next": true,
"has_previous": true
}The access token received from the authorization server in the OAuth 2.0 flow.
Page number
x >= 1Number of items per page
1 <= x <= 100Filter profiles by name
Was this page helpful?
Suggestions