from notte_sdk.client import NotteClient
notte = NotteClient()
# retrieve an existing persona or use console.notte.cc/personas to create a new one
persona = notte.Persona("<my-persona-id>")
print(
f"{persona.info.email=} {persona.info.phone_number=}"
){
"persona_id": "<string>",
"status": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"vault_id": "<string>",
"phone_number": "<string>"
}from notte_sdk.client import NotteClient
notte = NotteClient()
# retrieve an existing persona or use console.notte.cc/personas to create a new one
persona = notte.Persona("<my-persona-id>")
print(
f"{persona.info.email=} {persona.info.phone_number=}"
){
"persona_id": "<string>",
"status": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"vault_id": "<string>",
"phone_number": "<string>"
}The access token received from the authorization server in the OAuth 2.0 flow.
Successful Response
ID of the created persona
Status of the persona (active, closed)
First name of the persona
Last name of the persona
Email of the persona
ID of the vault
Phone number of the persona (optional)
Was this page helpful?
Suggestions