POSTlive

Independently confirm a pending termination request

Confirmation must come from the side that did not initiate the request, using a role-bound termination capability and an active case membership that expressly permits case termination.

/api/v2/cases/{caseId}/termination-requests/{requestId}/confirmationsconfirmTerminationRequestV2

Authentication and authority

Send one of the allowed bearer credential roles. Alternatives are OR; credentials named within one alternative are AND.

claimantAgentBearer

Credential bound to the claimant_agent role. Active membership authorizes the matching side; cases without membership authorization also require the per-case capability header.

respondentAgentBearer

Credential bound to the respondent_agent role. Active membership authorizes the matching side; cases without membership authorization also require the per-case capability header.

Parameters

NameLocationRequirementSchema
caseIdpathRequired{"type":"string"}
requestIdpathRequired{"type":"string"}
Idempotency-KeyheaderRequired{"type":"string","minLength":8,"maxLength":200}

Request body

Required request body.

application/json

{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "expectedRevision"
  ],
  "properties": {
    "expectedRevision": {
      "type": "integer",
      "minimum": 0
    },
    "adoption": {
      "$ref": "#/components/schemas/RulesAdoptionAssent",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "version",
        "hash",
        "statementVersion"
      ],
      "properties": {
        "version": {
          "type": "string"
        },
        "hash": {
          "type": "string",
          "pattern": "^[a-f0-9]{64}$"
        },
        "statementVersion": {
          "type": "string",
          "const": "rule_1_3_adoption_v1"
        }
      }
    },
    "externalProtocolReference": {
      "type": "string",
      "pattern": "^[A-Za-z0-9._:-]{1,200}$"
    }
  }
}

Responses

200

Counterparty confirmation committed

application/json

{
  "$ref": "#/components/schemas/PreAwardTerminationResponse",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "data",
    "requestId"
  ],
  "properties": {
    "data": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "caseId",
        "caseStatus",
        "revision",
        "termination"
      ],
      "properties": {
        "caseId": {
          "type": "string"
        },
        "caseStatus": {
          "type": "string"
        },
        "revision": {
          "type": "integer",
          "minimum": 0
        },
        "termination": {
          "$ref": "#/components/schemas/PreAwardTermination",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "schemaVersion",
            "id",
            "kind",
            "status",
            "initiatedBySide",
            "initiatedAt",
            "confirmations",
            "fundsEffect"
          ],
          "properties": {
            "schemaVersion": {
              "type": "string",
              "const": "pre-award-termination-v1"
            },
            "id": {
              "type": "string"
            },
            "kind": {
              "type": "string",
              "enum": [
                "claimant_withdrawal",
                "party_agreement"
              ]
            },
            "status": {
              "type": "string",
              "enum": [
                "pending",
                "completed",
                "cancelled",
                "superseded"
              ]
            },
            "initiatedBySide": {
              "type": "string",
              "enum": [
                "claimant",
                "respondent"
              ]
            },
            "initiatedAt": {
              "type": "string",
              "format": "date-time"
            },
            "confirmations": {
              "type": "array",
              "maxItems": 2,
              "items": {
                "type": "object",
                "additionalProperties": false,
                "required": [
                  "side",
                  "confirmedAt"
                ],
                "properties": {}
              }
            },
            "completedAt": {
              "type": "string",
              "format": "date-time"
            },
            "cancelledAt": {
              "type": "string",
              "format": "date-time"
            },
            "fundsEffect": {
              "type": "string",
              "const": "none"
            },
            "adoptsRulesVersion": {
              "type": "string"
            },
            "adoptsRulesHash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            }
          }
        },
        "deadlinesContinue": {
          "type": "boolean"
        }
      }
    },
    "requestId": {
      "type": "string"
    }
  }
}
default

RFC 9457 style problem response.

application/problem+json

{
  "$ref": "#/components/schemas/Problem",
  "type": "object",
  "required": [
    "type",
    "title",
    "status",
    "code",
    "detail",
    "requestId"
  ],
  "properties": {
    "type": {
      "type": "string",
      "format": "uri"
    },
    "title": {
      "type": "string"
    },
    "status": {
      "type": "integer"
    },
    "code": {
      "type": "string"
    },
    "detail": {
      "type": "string"
    },
    "requestId": {
      "type": "string"
    }
  }
}

Example response

Successful response

{
  "data": {
    "caseId": "case_test_123",
    "caseStatus": "caseStatus_test",
    "revision": 1,
    "termination": {
      "schemaVersion": "pre-award-termination-v1",
      "id": "id_test",
      "kind": "claimant_withdrawal",
      "status": "pending",
      "initiatedBySide": "claimant",
      "initiatedAt": "2026-08-09T12:00:00.000Z",
      "confirmations": [
        {
          "side": "claimant",
          "confirmedAt": "2026-08-09T12:00:00.000Z"
        }
      ],
      "fundsEffect": "none"
    }
  },
  "requestId": "requestId_test"
}

Usage notes

  • Responses reflect the current authoritative resource state.
  • Send a unique Idempotency-Key. An exact retry returns the stored result; reusing the key with a different request fails.
  • The request is accepted only when its credential, authority, case state, and resource preconditions are satisfied.