POSTpartial

Verify an AP2 package and open an existing bilateral evaluation case

AP2 purchase authority is evidence only. A case opens only after the separate resolution-authorization-v1 artifact carries valid claimant and respondent signatures.

/api/v2/ap2/resolution-requestscreateAp2ResolutionRequestV1

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.

Parameters

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

Request body

Required request body.

application/json

{
  "$ref": "#/components/schemas/Ap2ResolutionRequestV1",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "schemaVersion",
    "externalCaseId",
    "policyVersion",
    "evidencePackage",
    "resolutionAuthorization",
    "proposedCase"
  ],
  "properties": {
    "schemaVersion": {
      "type": "string",
      "const": "ap2-resolution-request-v1"
    },
    "externalCaseId": {
      "type": "string"
    },
    "policyVersion": {
      "type": "string"
    },
    "evidencePackage": {
      "$ref": "#/components/schemas/Ap2EvidencePackageV1",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "schemaVersion",
        "ap2SpecVersion",
        "evidenceId",
        "transactionId",
        "acquiredAt",
        "source",
        "artifacts",
        "trust"
      ],
      "properties": {
        "schemaVersion": {
          "type": "string",
          "const": "ap2-evidence-package-v1"
        },
        "ap2SpecVersion": {
          "type": "string",
          "const": "0.2"
        },
        "evidenceId": {
          "type": "string"
        },
        "transactionId": {
          "type": "string",
          "pattern": "^[A-Za-z0-9_-]{43}$"
        },
        "acquiredAt": {
          "type": "string",
          "format": "date-time"
        },
        "source": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "partnerId",
            "exporterId",
            "sourceRoles"
          ],
          "properties": {
            "partnerId": {
              "type": "string"
            },
            "exporterId": {
              "type": "string"
            },
            "sourceRoles": {
              "type": "array",
              "minItems": 1,
              "uniqueItems": true,
              "items": {
                "type": "string",
                "enum": [
                  "trusted_surface",
                  "credential_provider",
                  "shopping_agent",
                  "merchant",
                  "merchant_payment_processor"
                ]
              }
            }
          }
        },
        "artifacts": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "checkoutMandates",
            "checkoutJwt",
            "checkoutReceipt",
            "paymentMandates",
            "paymentReceipt"
          ],
          "properties": {
            "checkoutMandates": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "open",
                "closed"
              ],
              "properties": {
                "open": {},
                "closed": {
                  "$ref": "#/components/schemas/Ap2SdJwtArtifactV1"
                }
              }
            },
            "checkoutJwt": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "artifactId",
                "compactJwt"
              ],
              "properties": {
                "artifactId": {},
                "compactJwt": {}
              }
            },
            "checkoutReceipt": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "artifactId",
                "compactJws"
              ],
              "properties": {
                "artifactId": {},
                "compactJws": {}
              }
            },
            "paymentMandates": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "open",
                "closed"
              ],
              "properties": {
                "open": {},
                "closed": {
                  "$ref": "#/components/schemas/Ap2SdJwtArtifactV1"
                }
              }
            },
            "paymentReceipt": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "artifactId",
                "compactJws"
              ],
              "properties": {
                "artifactId": {},
                "compactJws": {}
              }
            }
          }
        },
        "trust": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "policyId",
            "policyVersion",
            "exporterAttestationJws",
            "keys"
          ],
          "properties": {
            "policyId": {
              "type": "string"
            },
            "policyVersion": {
              "type": "string"
            },
            "exporterAttestationJws": {
              "type": "string"
            },
            "keys": {
              "type": "array",
              "minItems": 1,
              "items": {
                "$ref": "#/components/schemas/Ap2TrustKeyV1"
              }
            }
          }
        }
      }
    },
    "resolutionAuthorization": {
      "$ref": "#/components/schemas/ResolutionAuthorizationV1",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "schemaVersion",
        "authorizationId",
        "transactionId",
        "effectiveAt",
        "expiresAt",
        "principals",
        "coveredTransaction",
        "coveredClaims",
        "appointment",
        "rules",
        "terms",
        "availableRemedies",
        "executionProvider",
        "proof"
      ],
      "properties": {
        "schemaVersion": {
          "type": "string",
          "const": "resolution-authorization-v1"
        },
        "authorizationId": {
          "type": "string"
        },
        "transactionId": {
          "type": "string",
          "pattern": "^[A-Za-z0-9_-]{43}$"
        },
        "effectiveAt": {
          "type": "string",
          "format": "date-time"
        },
        "expiresAt": {
          "type": "string",
          "format": "date-time"
        },
        "principals": {
          "type": "array",
          "minItems": 2,
          "maxItems": 2,
          "allOf": [
            {
              "contains": {
                "type": "object",
                "properties": {},
                "required": [
                  "side"
                ]
              },
              "minContains": 1,
              "maxContains": 1
            },
            {
              "contains": {
                "type": "object",
                "properties": {},
                "required": [
                  "side"
                ]
              },
              "minContains": 1,
              "maxContains": 1
            }
          ],
          "items": {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "side",
              "principalId",
              "displayName",
              "capacity",
              "notice",
              "agentAuthority"
            ],
            "properties": {
              "side": {
                "type": "string",
                "enum": [
                  "claimant",
                  "respondent"
                ]
              },
              "principalId": {
                "type": "string"
              },
              "displayName": {
                "type": "string"
              },
              "capacity": {
                "type": "string",
                "enum": [
                  "individual",
                  "legal_entity",
                  "autonomous_agent"
                ]
              },
              "notice": {
                "type": "object",
                "additionalProperties": false,
                "required": [
                  "method",
                  "address"
                ],
                "properties": {}
              },
              "agentAuthority": {
                "type": "object",
                "additionalProperties": false,
                "required": [
                  "agentId",
                  "representedPrincipalId",
                  "allowedActs",
                  "maximumAmount",
                  "expiresAt",
                  "delegationArtifactRef",
                  "delegationArtifactHash"
                ],
                "properties": {}
              }
            }
          }
        },
        "coveredTransaction": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "transactionId",
            "merchantOrCounterpartyId",
            "evidenceManifestHash"
          ],
          "properties": {
            "transactionId": {
              "type": "string",
              "pattern": "^[A-Za-z0-9_-]{43}$"
            },
            "merchantOrCounterpartyId": {
              "type": "string"
            },
            "evidenceManifestHash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            }
          }
        },
        "coveredClaims": {
          "$ref": "#/components/schemas/ResolutionCoveredClaimsV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "scope",
            "claimTypes",
            "maximumAmount"
          ],
          "properties": {
            "scope": {
              "type": "string"
            },
            "claimTypes": {
              "type": "array",
              "minItems": 1,
              "uniqueItems": true,
              "items": {}
            },
            "maximumAmount": {
              "$ref": "#/components/schemas/ResolutionMoneyV1"
            }
          }
        },
        "appointment": {
          "$ref": "#/components/schemas/ResolutionAppointmentV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "administrator",
            "tribunal",
            "caseMode",
            "procedureProfile"
          ],
          "properties": {
            "administrator": {
              "type": "string",
              "const": "People's Court"
            },
            "tribunal": {
              "type": "string",
              "const": "People's Court Tribunal"
            },
            "caseMode": {
              "type": "string",
              "const": "evaluation"
            },
            "procedureProfile": {
              "type": "string",
              "const": "evaluation"
            }
          }
        },
        "rules": {
          "$ref": "#/components/schemas/ResolutionRulesV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "rulesetId",
            "version",
            "hash",
            "url"
          ],
          "properties": {
            "rulesetId": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "hash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "url": {
              "type": "string",
              "format": "uri",
              "pattern": "^https://"
            }
          }
        },
        "terms": {
          "$ref": "#/components/schemas/ResolutionTermsV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "version",
            "hash"
          ],
          "properties": {
            "version": {
              "type": "string"
            },
            "hash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            }
          }
        },
        "legalContext": {
          "$ref": "#/components/schemas/ResolutionLegalContextBindingV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "lcpSpecVersion",
            "legalContextSha256",
            "termsAtrHash",
            "clauseId",
            "clauseSha256",
            "rulesSha256",
            "catalogSha256",
            "providerId",
            "serviceId"
          ],
          "properties": {
            "lcpSpecVersion": {
              "type": "string",
              "const": "0.1.38"
            },
            "legalContextSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "termsAtrHash": {
              "type": "string",
              "pattern": "^0x[a-f0-9]{64}$"
            },
            "clauseId": {
              "type": "string",
              "pattern": "^sha256:0x[a-f0-9]{64}$"
            },
            "clauseSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "rulesSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "catalogSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "providerId": {
              "type": "string",
              "minLength": 1,
              "maxLength": 16384
            },
            "serviceId": {
              "type": "string",
              "minLength": 1,
              "maxLength": 16384
            }
          }
        },
        "availableRemedies": {
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/components/schemas/ResolutionRemedyV1",
            "type": "object",
            "additionalProperties": false,
            "required": [
              "code",
              "settlementAction",
              "maximumAmount"
            ],
            "properties": {
              "code": {},
              "settlementAction": {},
              "maximumAmount": {
                "$ref": "#/components/schemas/ResolutionMoneyV1"
              }
            }
          }
        },
        "executionProvider": {
          "$ref": "#/components/schemas/ResolutionExecutionProviderV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "providerId",
            "adapter",
            "mode",
            "externalReference",
            "allowedActions",
            "authorizationExpiresAt"
          ],
          "properties": {
            "providerId": {
              "type": "string"
            },
            "adapter": {
              "type": "string"
            },
            "mode": {
              "type": "string",
              "enum": [
                "manual_partner",
                "partner_callback",
                "platform_adapter"
              ]
            },
            "externalReference": {
              "type": "string"
            },
            "allowedActions": {
              "type": "array",
              "minItems": 1,
              "uniqueItems": true,
              "items": {}
            },
            "authorizationExpiresAt": {
              "type": "string",
              "format": "date-time"
            }
          }
        },
        "proof": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "format",
            "payload",
            "signatures"
          ],
          "properties": {
            "format": {
              "type": "string",
              "const": "jws-json-general"
            },
            "payload": {
              "type": "string"
            },
            "signatures": {
              "type": "array",
              "minItems": 2,
              "maxItems": 2,
              "items": {
                "type": "object",
                "additionalProperties": false,
                "required": [
                  "protected",
                  "signature"
                ],
                "properties": {}
              }
            }
          }
        }
      }
    },
    "proposedCase": {
      "$ref": "#/components/schemas/ResolutionProposedCaseV1",
      "description": "Unsigned transport intent compared exactly to both principals' signed authorization; it is never treated as consent.",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "schemaVersion",
        "transactionId",
        "claimantPrincipalId",
        "respondentPrincipalId",
        "merchantOrCounterpartyId",
        "evidenceManifestHash",
        "coveredClaims",
        "appointment",
        "rules",
        "terms",
        "availableRemedies",
        "requestedRemedy",
        "executionProvider"
      ],
      "properties": {
        "schemaVersion": {
          "type": "string",
          "const": "resolution-proposed-case-v1"
        },
        "transactionId": {
          "type": "string",
          "pattern": "^[A-Za-z0-9_-]{43}$"
        },
        "claimantPrincipalId": {
          "type": "string"
        },
        "respondentPrincipalId": {
          "type": "string"
        },
        "merchantOrCounterpartyId": {
          "type": "string"
        },
        "evidenceManifestHash": {
          "type": "string",
          "pattern": "^[a-f0-9]{64}$"
        },
        "coveredClaims": {
          "$ref": "#/components/schemas/ResolutionCoveredClaimsV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "scope",
            "claimTypes",
            "maximumAmount"
          ],
          "properties": {
            "scope": {
              "type": "string"
            },
            "claimTypes": {
              "type": "array",
              "minItems": 1,
              "uniqueItems": true,
              "items": {}
            },
            "maximumAmount": {
              "$ref": "#/components/schemas/ResolutionMoneyV1"
            }
          }
        },
        "appointment": {
          "$ref": "#/components/schemas/ResolutionAppointmentV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "administrator",
            "tribunal",
            "caseMode",
            "procedureProfile"
          ],
          "properties": {
            "administrator": {
              "type": "string",
              "const": "People's Court"
            },
            "tribunal": {
              "type": "string",
              "const": "People's Court Tribunal"
            },
            "caseMode": {
              "type": "string",
              "const": "evaluation"
            },
            "procedureProfile": {
              "type": "string",
              "const": "evaluation"
            }
          }
        },
        "rules": {
          "$ref": "#/components/schemas/ResolutionRulesV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "rulesetId",
            "version",
            "hash",
            "url"
          ],
          "properties": {
            "rulesetId": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "hash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "url": {
              "type": "string",
              "format": "uri",
              "pattern": "^https://"
            }
          }
        },
        "terms": {
          "$ref": "#/components/schemas/ResolutionTermsV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "version",
            "hash"
          ],
          "properties": {
            "version": {
              "type": "string"
            },
            "hash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            }
          }
        },
        "legalContext": {
          "$ref": "#/components/schemas/ResolutionLegalContextBindingV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "lcpSpecVersion",
            "legalContextSha256",
            "termsAtrHash",
            "clauseId",
            "clauseSha256",
            "rulesSha256",
            "catalogSha256",
            "providerId",
            "serviceId"
          ],
          "properties": {
            "lcpSpecVersion": {
              "type": "string",
              "const": "0.1.38"
            },
            "legalContextSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "termsAtrHash": {
              "type": "string",
              "pattern": "^0x[a-f0-9]{64}$"
            },
            "clauseId": {
              "type": "string",
              "pattern": "^sha256:0x[a-f0-9]{64}$"
            },
            "clauseSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "rulesSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "catalogSha256": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "providerId": {
              "type": "string",
              "minLength": 1,
              "maxLength": 16384
            },
            "serviceId": {
              "type": "string",
              "minLength": 1,
              "maxLength": 16384
            }
          }
        },
        "availableRemedies": {
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/components/schemas/ResolutionRemedyV1",
            "type": "object",
            "additionalProperties": false,
            "required": [
              "code",
              "settlementAction",
              "maximumAmount"
            ],
            "properties": {
              "code": {},
              "settlementAction": {},
              "maximumAmount": {
                "$ref": "#/components/schemas/ResolutionMoneyV1"
              }
            }
          }
        },
        "requestedRemedy": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "action",
            "currency",
            "minorUnits"
          ],
          "properties": {
            "action": {
              "type": "string",
              "enum": [
                "release_to_claimant",
                "release_to_respondent",
                "allocate_by_award",
                "none"
              ]
            },
            "currency": {
              "type": "string",
              "const": "USD"
            },
            "minorUnits": {
              "type": "string",
              "pattern": "^[1-9][0-9]{0,14}$"
            }
          }
        },
        "executionProvider": {
          "$ref": "#/components/schemas/ResolutionExecutionProviderV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "providerId",
            "adapter",
            "mode",
            "externalReference",
            "allowedActions",
            "authorizationExpiresAt"
          ],
          "properties": {
            "providerId": {
              "type": "string"
            },
            "adapter": {
              "type": "string"
            },
            "mode": {
              "type": "string",
              "enum": [
                "manual_partner",
                "partner_callback",
                "platform_adapter"
              ]
            },
            "externalReference": {
              "type": "string"
            },
            "allowedActions": {
              "type": "array",
              "minItems": 1,
              "uniqueItems": true,
              "items": {}
            },
            "authorizationExpiresAt": {
              "type": "string",
              "format": "date-time"
            }
          }
        }
      }
    }
  }
}

Responses

201

Existing Partner API case opened after independent AP2 verification and bilateral resolution authorization.

application/json

{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "data",
    "requestId"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/Ap2ResolutionCaseV1",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "schemaVersion",
        "caseId",
        "externalCaseId",
        "status",
        "rules",
        "createdAt",
        "headless",
        "transactionId",
        "evidence",
        "resolutionAuthorization",
        "resolutionLifecycle",
        "settlementBinding",
        "resultPath"
      ],
      "properties": {
        "schemaVersion": {
          "type": "string",
          "const": "ap2-resolution-case-v1"
        },
        "caseId": {
          "type": "string"
        },
        "externalCaseId": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "rules": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "version",
            "hash"
          ],
          "properties": {
            "version": {
              "type": "string"
            },
            "hash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            }
          }
        },
        "createdAt": {
          "type": "string",
          "format": "date-time"
        },
        "headless": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "respondentHandoffPath",
            "answerPath",
            "capabilityDelivery"
          ],
          "properties": {
            "respondentHandoffPath": {
              "type": "string"
            },
            "answerPath": {
              "type": "string"
            },
            "capabilityDelivery": {
              "type": "string",
              "const": "show_once_not_replayed"
            }
          }
        },
        "transactionId": {
          "type": "string",
          "pattern": "^[A-Za-z0-9_-]{43}$"
        },
        "evidence": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "schemaVersion",
            "manifestHash",
            "verificationStatus",
            "exportRecordId",
            "workflowStatus"
          ],
          "properties": {
            "schemaVersion": {
              "type": "string",
              "const": "ap2-transaction-evidence-v1"
            },
            "manifestHash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "verificationStatus": {
              "type": "string",
              "const": "passed"
            },
            "exportRecordId": {
              "type": "string"
            },
            "workflowStatus": {
              "type": "string",
              "const": "candidate_not_adopted"
            }
          }
        },
        "resolutionAuthorization": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "authorizationId",
            "authorizationHash",
            "signingSides"
          ],
          "properties": {
            "authorizationId": {
              "type": "string"
            },
            "authorizationHash": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "signingSides": {
              "type": "array",
              "prefixItems": [
                {
                  "type": "string",
                  "const": "claimant"
                },
                {
                  "type": "string",
                  "const": "respondent"
                }
              ],
              "minItems": 2,
              "maxItems": 2
            }
          }
        },
        "resolutionLifecycle": {
          "$ref": "#/components/schemas/ResolutionLifecycleReferenceV1",
          "type": "object",
          "additionalProperties": false,
          "required": [
            "handoffId",
            "handoffDigest",
            "frozenRecordDigest"
          ],
          "properties": {
            "handoffId": {
              "type": "string"
            },
            "handoffDigest": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "frozenRecordDigest": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            }
          }
        },
        "settlementBinding": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "bindingId",
            "bindingDigest",
            "mode",
            "providerId"
          ],
          "properties": {
            "bindingId": {
              "type": "string"
            },
            "bindingDigest": {
              "type": "string",
              "pattern": "^[a-f0-9]{64}$"
            },
            "mode": {
              "type": "string",
              "enum": [
                "manual_partner",
                "partner_callback",
                "platform_adapter"
              ]
            },
            "providerId": {
              "type": "string"
            }
          }
        },
        "resultPath": {
          "type": "string"
        }
      }
    },
    "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": "ap2-resolution-case-v1",
    "caseId": "case_test_123",
    "externalCaseId": "marketplace_case_123",
    "status": "status_test",
    "rules": {
      "version": "version_test",
      "hash": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
    },
    "createdAt": "2026-08-09T12:00:00.000Z",
    "headless": {
      "respondentHandoffPath": "respondentHandoffPath_test",
      "answerPath": "answerPath_test",
      "capabilityDelivery": "show_once_not_replayed"
    },
    "transactionId": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
    "evidence": {
      "schemaVersion": "ap2-transaction-evidence-v1",
      "manifestHash": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "verificationStatus": "passed",
      "exportRecordId": "exportRecordId_test",
      "workflowStatus": "candidate_not_adopted"
    },
    "resolutionAuthorization": {
      "authorizationId": "authorizationId_test",
      "authorizationHash": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "signingSides": [
        "claimant",
        "respondent"
      ]
    },
    "resolutionLifecycle": {
      "handoffId": "handoffId_test",
      "handoffDigest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "frozenRecordDigest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
    },
    "settlementBinding": {
      "bindingId": "bindingId_test",
      "bindingDigest": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "mode": "manual_partner",
      "providerId": "providerId_test"
    },
    "resultPath": "resultPath_test"
  },
  "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.