create audit tombstone
create_audit_tombstoneAcknowledge a verified audit-chain gap by submitting a sequence number and written reason, so integrity checks stop flagging it as unexplained. Platform-admin action for repair, not concealment.
Instructions
Acknowledge a verified audit-chain gap with a written reason so the integrity check stops reporting it as unexplained; a platform-admin repair action, never a way to hide a gap. POST /v1/audit/tombstones (API-key scope: platform:write). Returns: 201 { seq, reason, created_at } Notes: 403 unless the key's minting user has the platform-level admin role (workspace OWNER/ADMIN is not enough). 400 for invalid JSON, wrong types, seq <= 0, reason under 10 chars, or a seq that is not a gap in the latest verification (message names when that verification ran, or that none has run yet).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| seq | Yes | Positive integer chain sequence number. Must appear as a problem of kind "gap" in the latest stored verification (see GET /v1/audit/verify) or the call is refused. | |
| reason | Yes | Why the slot was lost. Trimmed; at least 10 characters; stored up to 500 characters. Upserting an existing seq replaces the reason. |