Skip to main content
GET
/
safe-house
/
quarantine
/
{quarantine_id}
Get a single quarantined message
curl --request GET \
  --url https://api.mnemom.ai/v1/safe-house/quarantine/{quarantine_id} \
  --header 'Authorization: Bearer <token>'
{
  "quarantine_id": "<string>",
  "agent_id": "<string>",
  "threat_type": "<string>",
  "content_hash": "<string>",
  "reviewed_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

quarantine_id
string
required

Response

Quarantine record.

Quarantined message row. Stores only content_hash — the original plaintext is not retained once the message is quarantined.

quarantine_id
string
agent_id
string
status
enum<string>
Available options:
pending,
released,
deleted,
confirmed_threat
threat_type
string
content_hash
string
reviewed_at
string<date-time> | null
created_at
string<date-time>