GET
/
users
/
{user_id}
/
sessions
Get User Sessions
curl --request GET \
  --url http://localhost:8080/v1/users/{user_id}/sessions
{
  "sessions": [
    {
      "user_ids": [
        "<string>"
      ],
      "session_id": "<string>",
      "group_id": "<string>",
      "agent_ids": [
        "<string>"
      ]
    }
  ]
}

Path Parameters

user_id
string
required

The ID of the user whose sessions are requested.

Response

200 - application/json

A list of sessions for the specified user.

Response model containing a list of all retrieved memory sessions.

sessions
MemorySession · object[]
required

The list of session objects.