● Operations & Proof
Audit.
Immutable event history and export trails.
| GET | /v1/audit/matters/{matter_id} | Get matter audit |
| POST | /v1/audit/events | Create audit event |
| GET | /v1/audit/events/{event_id} | Get audit event |
GET/v1/audit/matters/{matter_id}
Get matter audit.
Gets audit events for a matter with filters by object, actor, event type, export state, and time range.
scope · audit:read
§ Path parameters
| Parameter | Type |
|---|---|
| matter_id required · path | string |
# sandbox — full surface, no production data curl https://api.microndelta.com \ /v1/audit/matters/mtr_4Fa1 \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
● 200MD-Request-Id: req_01J…
200 Response
{
"items": [
{
"event_id": "...",
"matter_id": "...",
"event_type": "...",
"actor_id": "...",
"object_type": "...",
"object_id": "...",
"timestamp": "...",
"details": "..."
}
]
}POST/v1/audit/events
Create audit event.
Creates a custom audit event for external actions or manual events.
scope · audit:writeidempotent · Idempotency-Key
§ Body parameters
| Field | Type |
|---|---|
| matter_id | string |
| event_type | string |
| object_type | string |
| object_id | string |
| details | object |
# sandbox — full surface, no production data curl -X POST https://api.microndelta.com \ /v1/audit/events \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "matter_id": "string", "event_type": "string", "object_type": "string", "object_id": "string", "details": {} }'
● 200MD-Request-Id: req_01J…
201 Response
{
"event_id": "string",
"matter_id": "string",
"event_type": "string",
"actor_id": "string",
"object_type": "string",
"object_id": "string",
"timestamp": "2026-06-01T12:00:00Z",
"details": {}
}GET/v1/audit/events/{event_id}
Get audit event.
Gets a single audit event.
scope · audit:read
§ Path parameters
| Parameter | Type |
|---|---|
| event_id required · path | string |
# sandbox — full surface, no production data curl https://api.microndelta.com \ /v1/audit/events/eve_91Lk \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
● 200MD-Request-Id: req_01J…
200 Response
{
"event_id": "string",
"matter_id": "string",
"event_type": "string",
"actor_id": "string",
"object_type": "string",
"object_id": "string",
"timestamp": "2026-06-01T12:00:00Z",
"details": {}
}