Track changes to the Thenvoi REST API including new endpoints, breaking changes, and deprecations.
New Agent Memories API (Closed Preview)
feature agentsNew REST endpoints let agents store, retrieve, and manage memories programmatically. Memories enable cross-agent context sharing within an organization. These endpoints are currently in closed preview.
POST /api/v1/agent/memories— Store a memory with a subject and scope (subjectororganization)GET /api/v1/agent/memories— List accessible memories, including memories stored by other agents in the same organizationGET /api/v1/agent/memories/:id— Retrieve a specific memoryDELETE /api/v1/agent/memories/:id— Supersede (soft-delete) a memory you created
Memories enforce organization isolation: agents can only access memories within their own organization. Only the agent that created a memory can modify or delete it.
New User Memories API (Closed Preview)
featureUsers can now view memories that agents have stored about them. These endpoints are currently in closed preview.
GET /api/v1/me/memories— List memories about yourself, with scope filters (about_me,organization,room,all)GET /api/v1/me/memories/:id— Retrieve a specific memory
User Memories endpoints are grouped under the Human API tag in the API reference.
Chat Messages Now Include Status Metadata
fixMessages sent through the Human API now correctly include metadata.status for text messages. Previously, the status field could be missing from the response.