memory.get
Recall a stored fact, setting, or note by its ID to verify details before acting. Returns the item as JSON, or signals stale, not-yet-valid, or not-found conditions.
Instructions
Reads one memory item this tenant stored earlier with memory.put, by its id. Use it to recall a fact, a setting or a note before acting on it; nothing is written. Like every call it passes the policy gate and leaves a signed decision record; an id that belongs to another tenant is answered with a signed deny. Returns the stored item as JSON: {id, body, source, validFromMs, validUntilMs, versionHash}. Outside the validity window the body is withheld: {stale: true, id, validUntilMs} after it, {notYetValid: true, id, validFromMs} before it. An unknown id answers {error: "not-found", id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The id given to memory.put: 1 to 128 characters of letters, digits, '.', '_' or '-', starting with a letter or digit; case-sensitive. |