Skip to main content
POST
/
safe-house
/
report-incident
Report a security incident
curl --request POST \
  --url https://api.mnemom.ai/v1/safe-house/report-incident \
  --header 'Content-Type: application/json' \
  --header 'X-Mnemom-Agent-Proof: <api-key>' \
  --data '{}'
{
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": "<unknown>"
  }
}

Authorizations

X-Mnemom-Agent-Proof
string
header
required

Agent possession proof: the full SHA-256 hex digest of ${apiKey}|${agentName} (or ${apiKey} for an unnamed singleton agent) — the same hash_proof primitive used by POST /v1/agents claim, link-agent, and verify-binding. The server resolves the agent by agent_hash = proof[:16]. The agent's own identity (ADR-API-001 third auth class) — distinct from ApiKeyAuth (X-Mnemom-Api-Key, which resolves a user/account, not an agent).

Body

application/json

The body is of type object.

Response

Incident recorded.