---
title: "List users who accessed a memory store"
method: GET
path: "/v1/projects/{projectSlug}/memory/store/users"
tags: ["Memory"]
---

# List users who accessed a memory store

`GET /v1/projects/{projectSlug}/memory/store/users`

Returns the end-users who accessed the store (reads and writes both count as access), most recent access first. Capped at the 1000 most recent accessors.

## Path parameters

- `projectSlug` string, required — Project slug (human-readable identifier)

## Query parameters

- `storeId` string, required — Store identifier (`gen_ai.memory.store.id`). Pass an empty string to address the unattributed ("") store.

## Response `200`

Users of the store

- MemoryStoreUsers
  - `items` MemoryStoreUser[], required — End-users who accessed the store, most recent access first.
    - `userId` string, required — End-user identifier that accessed the store.
    - `lastAccessedAt` string, required — ISO-8601 timestamp of the user's most recent access (read or write).

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `404` — Not found

---

[API](https://skmtc.net/latitude-dev/apis/latitude.md) · [All operations](https://skmtc.net/latitude-dev/apis/latitude/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/latitude-dev/latitude/versions/6a8789c59a5c/schema)
