GETpartial

Project the existing Award finality authorized remedy and execution confirmation

Project the existing Award finality authorized remedy and execution confirmation.

/api/v2/ap2/resolution-results/{caseId}getAp2ResolutionResultV1

Authentication and authority

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

platformOrchestratorBearer

Credential bound to the platform_orchestrator role.

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.

readOnlyObserverBearer

Credential bound to the read_only_observer role and limited to operational projections.

Parameters

NameLocationRequirementSchema
caseIdpathRequired{"type":"string"}

Responses

200

Existing Award finality remedy and separate execution projection.

application/json

{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "data",
    "requestId"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/ResolutionResultV1",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "schemaVersion",
        "authorizationId",
        "transactionId",
        "caseId",
        "externalCaseId",
        "awardReference",
        "review",
        "authorizedRemedy",
        "execution",
        "projectedAt"
      ],
      "properties": {
        "schemaVersion": {
          "type": "string",
          "const": "resolution-result-v1"
        },
        "authorizationId": {
          "type": "string"
        },
        "transactionId": {
          "type": "string",
          "pattern": "^[A-Za-z0-9_-]{43}$"
        },
        "caseId": {
          "type": "string"
        },
        "externalCaseId": {
          "type": "string"
        },
        "awardReference": {
          "oneOf": [
            {
              "type": "null"
            },
            {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "dispositionId",
                "awardRevision",
                "awardHash",
                "awardArtifactPath",
                "awardAttestationPath",
                "recordBundlePath"
              ],
              "properties": {
                "dispositionId": {
                  "type": "string"
                },
                "awardRevision": {
                  "type": "integer",
                  "minimum": 1
                },
                "awardHash": {
                  "type": "string",
                  "pattern": "^[a-f0-9]{64}$"
                },
                "awardArtifactPath": {
                  "type": "string"
                },
                "awardAttestationPath": {
                  "type": "string"
                },
                "recordBundlePath": {
                  "type": "string"
                }
              }
            }
          ]
        },
        "review": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "decisionStatus",
            "finality",
            "appealEligible",
            "executionHeldByAppeal",
            "appealDeadlineAt"
          ],
          "properties": {
            "decisionStatus": {
              "type": "string",
              "enum": [
                "not_created",
                "under_review",
                "served"
              ]
            },
            "finality": {
              "type": "string",
              "enum": [
                "not_served",
                "served",
                "appealable",
                "appeal_reserved",
                "appeal_pending",
                "final"
              ]
            },
            "appealEligible": {
              "type": "boolean"
            },
            "executionHeldByAppeal": {
              "type": "boolean"
            },
            "appealDeadlineAt": {
              "type": [
                "string",
                "null"
              ],
              "format": "date-time"
            }
          }
        },
        "authorizedRemedy": {
          "oneOf": [
            {
              "type": "null"
            },
            {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "outcomeCode",
                "action",
                "currency",
                "amountMinorUnits",
                "allocations",
                "bindingDigest"
              ],
              "properties": {
                "outcomeCode": {
                  "type": "string"
                },
                "action": {
                  "type": "string",
                  "enum": [
                    "release_to_claimant",
                    "release_to_respondent",
                    "allocate_by_award",
                    "none"
                  ]
                },
                "currency": {
                  "type": "string",
                  "const": "USD"
                },
                "amountMinorUnits": {
                  "type": "string",
                  "pattern": "^[1-9][0-9]{0,77}$"
                },
                "allocations": {
                  "type": "array",
                  "items": {}
                },
                "bindingDigest": {
                  "type": "string",
                  "pattern": "^[a-f0-9]{64}$"
                }
              }
            }
          ]
        },
        "execution": {
          "description": "Separate from Award finality; failure never creates a confirmation or changes the Award.",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "status",
            "attemptReference",
            "operationReference",
            "confirmation",
            "failureCode"
          ],
          "properties": {
            "status": {
              "type": "string",
              "enum": [
                "not_ready",
                "not_requested",
                "prepared",
                "submitting",
                "validated",
                "manual_action_required",
                "callback_required",
                "completed",
                "failed",
                "blocked",
                "unknown_outcome"
              ]
            },
            "attemptReference": {
              "type": [
                "string",
                "null"
              ]
            },
            "operationReference": {
              "type": [
                "string",
                "null"
              ]
            },
            "confirmation": {
              "oneOf": [
                {
                  "type": "null"
                },
                {
                  "type": "object",
                  "additionalProperties": false,
                  "required": [
                    "providerId",
                    "adapter",
                    "receipt",
                    "receiptHash",
                    "confirmedAt"
                  ],
                  "properties": {}
                }
              ]
            },
            "failureCode": {
              "type": [
                "string",
                "null"
              ]
            }
          }
        },
        "projectedAt": {
          "type": "string",
          "format": "date-time"
        }
      }
    },
    "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": {
    "schemaVersion": "resolution-result-v1",
    "authorizationId": "authorizationId_test",
    "transactionId": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
    "caseId": "case_test_123",
    "externalCaseId": "marketplace_case_123",
    "awardReference": {},
    "review": {
      "decisionStatus": "not_created",
      "finality": "not_served",
      "appealEligible": false,
      "executionHeldByAppeal": false,
      "appealDeadlineAt": null
    },
    "authorizedRemedy": {},
    "execution": {
      "status": "not_ready",
      "attemptReference": null,
      "operationReference": null,
      "confirmation": {},
      "failureCode": null
    },
    "projectedAt": "2026-08-09T12:00:00.000Z"
  },
  "requestId": "requestId_test"
}

Usage notes

  • Responses reflect the current authoritative resource state.