FruxonDocs
ApiAgent memories

Summarize who an agent holds memories about.

Returns the shared-memory count, the total per-end-user count, the number of distinct people, and one page of people by memory count — the data behind the memory panel's header ("N shared · M across K people") and its person picker. Counts are authoritative regardless of the page. Pass the returned `nextPageToken` to page through all people (agents with more than one page of distinct people). Returns 404 when the agent does not exist in the tenant.

GET
/v1/tenants/{tenant}/agents/{agent}/memories/subjects
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

agent*string

The unique identifier of the agent.

tenant*string

The tenant identifier

Query Parameters

pageSize?integer

People per page (1–500, default 100).

Default100
Formatint32
pageToken?string

Opaque token from a previous response's nextPageToken; omit for the first page.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/memories/subjects"
{
  "sharedCount": 0,
  "perPersonCount": 0,
  "peopleCount": 0,
  "subjects": [
    {
      "subject": "string",
      "count": 0,
      "displayName": "string"
    }
  ],
  "nextPageToken": "string"
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}