GET /openapi/memorylake/api/v3/workspaces/{workspaceId}/projects/{projectId}/memories/conflicts/{conflictId}
Permission required:
project:mem_readPath Parameters
string
required
Workspace ID
string
required
Project ID
string
required
Conflict ID
curl -X GET 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123/projects/proj_def456/memories/conflicts/conf-abc123' \
-H 'Authorization: Bearer sk_xxxxxx'
Response
object
Show Conflict object
Show Conflict object
string
Conflict identifier
string
Short title describing the conflict
string
Detailed explanation of the contradiction
string
Conflict category:
m2m (fact vs. fact) or m2d (fact vs. document)boolean
Whether the conflict has been resolved
object
Resolution record. Present only when the conflict has been resolved;
null otherwise.boolean
Whether an involved fact changed after the conflict was detected
string
Conflict type:
logical or knowledgearray
IDs of the facts involved in the conflict
array
array
string
When the conflict was first detected
string
When the conflict was last updated
{
"success": true,
"data": {
"id": "conf-abc123",
"name": "Contradicting project deadline",
"description": "One fact states the project deadline is March 2025; another says it was moved to June 2025.",
"category": "m2m",
"resolved": true,
"resolve": {
"id": "res-9f8e7d6c",
"strategy": "keep_fact",
"keep_fact_id": "fact-002",
"forgotten_fact_ids": ["fact-001"],
"created_at": "2025-01-21T09:15:00Z"
},
"stale": false,
"conflict_type": "logical",
"fact_ids": ["fact-001", "fact-002"],
"fact_snapshots": [
{
"fact_id": "fact-001",
"fact_text": "Project deadline is March 2025"
},
{
"fact_id": "fact-002",
"fact_text": "Project deadline was moved to June 2025"
}
],
"file_chunks": [],
"created_at": "2025-01-20T14:30:00Z",
"updated_at": "2025-01-21T09:15:00Z"
}
}
To resolve this conflict, call Resolve Memory Conflict with the strategy you want to apply.