201
Versioned data envelope.
application/json
{
"type": "object",
"required": [
"data",
"requestId"
],
"properties": {
"data": {},
"requestId": {
"type": "string"
}
}
}Confirm and open a prepared claimant filing.
/api/v2/filings/{draftId}/confirmconfirmFilingV2Send one of the allowed bearer credential roles. Alternatives are OR; credentials named within one alternative are AND.
platformOrchestratorBearerCredential bound to the platform_orchestrator role.
claimantAgentBearerCredential bound to the claimant_agent role. Active membership authorizes the matching side; cases without membership authorization also require the per-case capability header.
| Name | Location | Requirement | Schema |
|---|---|---|---|
draftId | path | Required | {"type":"string"} |
Idempotency-Key | header | Required | {"type":"string","minLength":8,"maxLength":200} |
Required request body.
application/json
{
"$ref": "#/components/schemas/FilingConfirmation",
"type": "object",
"additionalProperties": false,
"required": [
"draftDigest",
"confirmationStatement",
"actorId",
"principalId",
"confirmationMethod",
"confirmationReference"
],
"properties": {
"draftDigest": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"confirmationStatement": {
"type": "string",
"minLength": 1,
"maxLength": 1000
},
"actorId": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"description": "Must equal the immutable claimant authority agent ID."
},
"principalId": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"confirmationMethod": {
"type": "string",
"const": "protocol_act"
},
"confirmationReference": {
"type": "string",
"minLength": 1,
"maxLength": 500
}
}
}Versioned data envelope.
application/json
{
"type": "object",
"required": [
"data",
"requestId"
],
"properties": {
"data": {},
"requestId": {
"type": "string"
}
}
}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"
}
}
}{
"data": {},
"requestId": "requestId_test"
}Idempotency-Key. An exact retry returns the stored result; reusing the key with a different request fails.