Skip to main content
GET
/
admin
/
memory
/
user
/
{userId}
List memory parameters for a user, grouped by institution.
curl --request GET \
  --url https://pria.praxislxp.com/admin/memory/user/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "user": {
    "_id": "<string>",
    "email": "<string>",
    "fname": "<string>",
    "lname": "<string>"
  },
  "data": [
    {
      "_id": "<string>",
      "key_name": "<string>",
      "key_value": "<string>",
      "key_description": "<string>",
      "key_namespace": "<string>",
      "shared": true,
      "created": "2023-11-07T05:31:56Z",
      "institution": {
        "_id": "<string>",
        "name": "<string>",
        "ainame": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token passed in authorization header

Path Parameters

userId
string
required

Query Parameters

namespace
string
shared
enum<string>
Available options:
true,
false

Response

200 - application/json

OK

success
boolean
user
object
data
object[]