Skip to main content
POST
/
api
/
v2
/
agents
/
{agent_id}
/
validate
/
{memory_id}
curl -X POST "http://localhost:8000/api/v2/agents/my-agent/validate/mem_abc123" \
  -H "Authorization: Bearer your_api_key" \
  -H "X-Session-Token: your_session_token"
{
  "memory_id": "mem_abc123",
  "validated": true,
  "confidence": 1.0
}

Overview

Mark a memory as validated.

Authentication

  • Authorization: Bearer your_api_key
  • X-Session-Token: {session_token}

Path Parameters

agent_id
string
required
Agent identifier.
memory_id
string
required
Memory identifier.
curl -X POST "http://localhost:8000/api/v2/agents/my-agent/validate/mem_abc123" \
  -H "Authorization: Bearer your_api_key" \
  -H "X-Session-Token: your_session_token"
{
  "memory_id": "mem_abc123",
  "validated": true,
  "confidence": 1.0
}

Response Fields

memory_id
string
Memory ID.
validated
boolean
Validation status.
confidence
number
Validation confidence.