● Case Spine
Judgments.
Judgment intake, validation, deadlines, and enforcement plans.
| POST | /v1/judgments/intake | Intake judgment |
| GET | /v1/judgments/{judgment_id} | Get judgment |
| PATCH | /v1/judgments/{judgment_id} | Update judgment |
| POST | /v1/judgments/{judgment_id}/validate | Validate judgment readiness |
| GET | /v1/judgments/{judgment_id}/deadlines | Get judgment deadlines |
| POST | /v1/judgments/{judgment_id}/enforcement-profile | Set enforcement profile |
| POST | /v1/judgments/{judgment_id}/enforcement-plan | Generate enforcement plan |
Intake judgment.
Creates a structured judgment record from entered fields and optional uploaded source references.
| Field | Type |
|---|---|
| matter_id | string |
| court | string |
| case_number | string |
| jurisdiction | string |
| creditor | string |
| debtor | string |
| amount | object |
| date_entered | date |
This operation refuses to run without a granted authority model on the parent matter. A missing grant returns 403 authority_required — it never soft-passes.
# sandbox — full surface, no production data curl -X POST https://api.microndelta.com \ /v1/judgments/intake \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "matter_id": "string", "court": "string", "case_number": "string", "jurisdiction": "string", "creditor": "string", "debtor": "string", "amount": { "amount": 123.45, "currency": "string", "valuation_time": "2026-06-01T12:00:00Z" }, "date_entered": "2026-06-01" }'
{
"judgment_id": "string",
"matter_id": "string",
"court": "string",
"case_number": "string",
"jurisdiction": "string",
"date_entered": "2026-06-01",
"creditor": "string",
"debtor": "string"
}Get judgment.
Gets judgment, validation, deadlines, linked matter, and balance summary.
| Parameter | Type |
|---|---|
| judgment_id required · path | string |
# sandbox — full surface, no production data curl https://api.microndelta.com \ /v1/judgments/jdg_8kQ2 \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
{
"judgment_id": "string",
"matter_id": "string",
"court": "string",
"case_number": "string",
"jurisdiction": "string",
"date_entered": "2026-06-01",
"creditor": "string",
"debtor": "string"
}Update judgment.
Updates judgment metadata and review flags.
| Parameter | Type |
|---|---|
| judgment_id required · path | string |
| Field | Type |
|---|---|
| status | string |
| appeal_stay_status | string |
| bankruptcy_status | string |
| renewal_deadline | date |
| review_state | object |
This operation refuses to run without a granted authority model on the parent matter. A missing grant returns 403 authority_required — it never soft-passes.
# sandbox — full surface, no production data curl -X PATCH https://api.microndelta.com \ /v1/judgments/jdg_8kQ2 \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "status": "string", "appeal_stay_status": "string", "bankruptcy_status": "string", "renewal_deadline": "2026-06-01", "review_state": { "review_required": true, "review_status": "not_required", "review_owner": "string", "review_notes": "string" } }'
{
"judgment_id": "string",
"matter_id": "string",
"court": "string",
"case_number": "string",
"jurisdiction": "string",
"date_entered": "2026-06-01",
"creditor": "string",
"debtor": "string"
}Validate judgment readiness.
Runs authority, stay/appeal/bankruptcy, consumer/commercial, and required-document gates.
| Parameter | Type |
|---|---|
| judgment_id required · path | string |
| Field | Type |
|---|---|
| checks | array |
| consumer_debt | boolean |
| bankruptcy_known | boolean |
| appeal_stay_known | boolean |
This operation refuses to run without a granted authority model on the parent matter. A missing grant returns 403 authority_required — it never soft-passes.
# sandbox — full surface, no production data curl -X POST https://api.microndelta.com \ /v1/judgments/jdg_8kQ2/validate \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "checks": [ "string" ], "consumer_debt": true, "bankruptcy_known": true, "appeal_stay_known": true }'
{
"judgment_id": "string",
"enforcement_ready": true,
"review_required": true,
"missing_items": [
"string"
],
"gates": [
{
"gate": "...",
"status": "...",
"reasons": "...",
"required_actions": "..."
}
]
}Get judgment deadlines.
Returns renewal, service, response, hearing, packet, and monitoring deadlines.
| Parameter | Type |
|---|---|
| judgment_id required · path | string |
# sandbox — full surface, no production data curl https://api.microndelta.com \ /v1/judgments/jdg_8kQ2/deadlines \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
{
"items": [
{
"deadline_id": "...",
"type": "...",
"date": "...",
"owner": "...",
"status": "..."
}
]
}Set enforcement profile.
Sets Measured, Assertive, or Maximum Lawful posture after compliance gates.
| Parameter | Type |
|---|---|
| judgment_id required · path | string |
| Field | Type |
|---|---|
| profile | string |
| notes | string |
This operation refuses to run without a granted authority model on the parent matter. A missing grant returns 403 authority_required — it never soft-passes.
# sandbox — full surface, no production data curl -X POST https://api.microndelta.com \ /v1/judgments/jdg_8kQ2/enforcement-profile \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "profile": "measured", "notes": "string" }'
{
"judgment_id": "string",
"profile": "string",
"pressure_level": 123,
"review_state": {
"review_required": true,
"review_status": "not_required",
"review_owner": "string",
"review_notes": "string"
}
}Generate enforcement plan.
Generates a lawful action plan from judgment, debtor graph, crypto map, exchange opportunities, issuer opportunities, sanctions gates, and selected profile.
| Parameter | Type |
|---|---|
| judgment_id required · path | string |
| Field | Type |
|---|---|
| profile | string |
| constraints | object |
| known_wallets | array |
| known_exchanges | array |
This operation refuses to run without a granted authority model on the parent matter. A missing grant returns 403 authority_required — it never soft-passes.
# sandbox — full surface, no production data curl -X POST https://api.microndelta.com \ /v1/judgments/jdg_8kQ2/enforcement-plan \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "profile": "measured", "constraints": { "consumer_debt": true, "bankruptcy_known": true, "appeal_stay_known": true, "sanctions_review_required": true }, "known_wallets": [ "string" ], "known_exchanges": [ "string" ] }'
{
"plan_id": "string",
"judgment_id": "string",
"profile": "string",
"review_required": true,
"priority_actions": [
{
"action_id": "...",
"matter_id": "...",
"campaign_id": "...",
"type": "...",
"title": "...",
"owner_id": "...",
"priority": "...",
"status": "..."
}
],
"blocked_actions": [
{
"type": "string",
"reason": "string"
}
],
"deadlines": [
{
"deadline_id": "...",
"type": "...",
"date": "...",
"owner": "...",
"status": "..."
}
],
"gates": [
{
"gate": "...",
"status": "...",
"reasons": "...",
"required_actions": "..."
}
]
}