PUT
/
api
/
v1
/
users
/
profile
/
{user_id}
/
{profile_id}
Python
# To use the Python SDK, install the package:
# pip install memobase

from memobase import MemoBaseClient

client = MemoBaseClient(project_url='PROJECT_URL', api_key='PROJECT_TOKEN')

user = client.get_user('user_id')
user.update_profile(profile_id="profile_id", content="I am a software engineer", topic="career", sub_topic="job")
{
  "data": {},
  "errno": 0,
  "errmsg": ""
}
Update a specific profile in a user’s long-term memory.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
required

The ID of the user

profile_id
required

The ID of the profile to update

Body

application/json

The content of the profile to update

content
string
required

The profile content

attributes
object | null
required

User profile attributes in JSON, containing 'topic', 'sub_topic'

Response

Successful Response

data
object | null

Response data payload

errno
enum<integer>

Error code, 0 means success

Available options:
0,
400,
401,
403,
404,
405,
409,
422,
500,
501,
502,
503,
504,
520
errmsg
string
default:""

Error message, empty when success