PUT
/
api
/
v1
/
users
/
{user_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')

client.update_user(uid, {"ANY": "NEW_DATA"})
{
  "data": {
    "id": "<string>"
  },
  "errno": 0,
  "errmsg": ""
}
Update an existing user’s data. This endpoint allows you to modify user-specific information and settings.

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 to update

Body

application/json · User Data · object

Updated user data

Response

Successful Response

data
object | null

Response containing a single ID

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