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

from memobase import Memobase

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

u = client.get_user(uid)
{
  "data": {
    "data": {},
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "errno": 0,
  "errmsg": ""
}

Retrieve user information and associated data. This endpoint returns the user’s profile and configuration data.

Authorizations

Authorization
string
header
required

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

Path Parameters

user_id
string
required

The ID of the user to retrieve

Response

200
application/json

Successful Response

The response is of type object.