● Enforcement
Issuer Remediation.
Stablecoin freeze, burn/reissue, destination-wallet workflows.
| POST | /v1/issuer-remediation/freeze-packet | Create issuer freeze packet |
| POST | /v1/issuer-remediation/burn-reissue-packet | Create burn/reissue packet |
| POST | /v1/issuer-remediation/destination-wallet-certificate | Create destination wallet certificate |
| GET | /v1/issuer-remediation/{remediation_id} | Get issuer remediation |
Create issuer freeze packet.
Prepares issuer-controlled freeze/preserve packet for stablecoin issuer workflows.
| Field | Type |
|---|---|
| matter_id | string |
| judgment_id | string |
| wallets | array |
| packet_type | string |
| authorized_sender | string |
| legal_authority_id | string |
| source_refs | array |
| 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/issuer-remediation/freeze-packet \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "matter_id": "string", "judgment_id": "string", "wallets": [ "string" ], "packet_type": "string", ... }'
{
"remediation_id": "string",
"matter_id": "string",
"issuer": "string",
"asset": "string",
"network": "string",
"action_type": "freeze_only",
"status": "string",
"destination_wallet_certificate_id": "string"
}Create burn/reissue packet.
Prepares order-backed burn/reissue workflow packet. Kinetic does not burn, mint, freeze, transfer, or redeem tokens.
| Field | Type |
|---|---|
| matter_id | string |
| judgment_id | string |
| wallets | array |
| packet_type | string |
| authorized_sender | string |
| legal_authority_id | string |
| source_refs | array |
| 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/issuer-remediation/burn-reissue-packet \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "matter_id": "string", "judgment_id": "string", "wallets": [ "string" ], "packet_type": "string", ... }'
{
"remediation_id": "string",
"matter_id": "string",
"issuer": "string",
"asset": "string",
"network": "string",
"action_type": "freeze_only",
"status": "string",
"destination_wallet_certificate_id": "string"
}Create destination wallet certificate.
Creates custody, purpose, chain, signers, sanctions screen, and approval certificate for remittance/reissue destination wallet.
| Field | Type |
|---|---|
| matter_id | string |
| wallet_address | string |
| network | string |
| purpose | string |
| owner | string |
| custodian | string |
| signer_model | string |
| allowed_assets | 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/issuer-remediation/destination-wallet-certificate \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11" \ -H "Idempotency-Key: 4f8a-bd31" \ -d '{ "matter_id": "string", "wallet_address": "string", "network": "string", "purpose": "string", "owner": "string", "custodian": "string", "signer_model": "string", "allowed_assets": [ "string" ] }'
{
"destination_wallet_id": "string",
"wallet_address": "string",
"network": "string",
"purpose": "string",
"owner": "string",
"custodian": "string",
"sanctions_screen_complete": true,
"approval_status": "string"
}Get issuer remediation.
Gets issuer remediation status: freeze, burn, reissue, remit, reject, close.
| Parameter | Type |
|---|---|
| remediation_id required · path | string |
# sandbox — full surface, no production data curl https://api.microndelta.com \ /v1/issuer-remediation/rem_91Lk \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
{
"remediation_id": "string",
"matter_id": "string",
"issuer": "string",
"asset": "string",
"network": "string",
"action_type": "freeze_only",
"status": "string",
"destination_wallet_certificate_id": "string"
}