MemorySync
API Reference

Decision Panel

Read contradictions and open decisions MemorySync has detected between memories.

Endpoint and query parameters

GET/memory/decisions
200 OK
ParameterTypeContract
limitintegerOptional ceiling on decisions returned.

Read open decisions

import os
from memorysync import MemorySyncClient
client = MemorySyncClient(
api_key=os.environ["MEMORYSYNC_API_KEY"],
base_url="https://api.memorysync.io",
project_id=os.environ["MEMORYSYNC_PROJECT_ID"],
end_user_id="usr_7f3a9c2e",
)
decisions = client.decisions(limit=20)

Result handling

Each entry pairs memories that conflict and describes the conflict. An empty set means nothing contradictory was found, which is the common case.

Errors and next action

Correct 4xx request problems. For 5xx, treat the panel as temporarily unavailable rather than as evidence of no conflicts.

Safety notes