GETlive

List verified evidence export candidates

Lists verified candidate artifacts shared with this case. Source/export tenant and authenticated adopter tenant remain distinct; active case-side authorization controls visibility and adoption.

/api/v2/cases/{caseId}/evidence-candidateslistEvidenceCandidatesV2

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"}
x-arb-party-token

Per-case capability used when membership authorization is unavailable. Optional with active membership for the matching side.

headerOptional{"type":"string"}

Responses

200

Case-scoped evidence candidates visible to the acting side.

application/json

{
  "type": "object",
  "required": [
    "data",
    "requestId"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/EvidenceCandidateList",
      "type": "object",
      "additionalProperties": false,
      "required": [
        "schemaVersion",
        "caseId",
        "party",
        "candidates"
      ],
      "properties": {
        "schemaVersion": {
          "type": "string",
          "const": "evidence-candidates-v2"
        },
        "caseId": {
          "type": "string"
        },
        "party": {
          "type": "string",
          "enum": [
            "claimant",
            "respondent"
          ]
        },
        "candidates": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "exportRecordId",
              "sourcePartnerId",
              "adopterPartnerId",
              "externalExportId",
              "exportVersion",
              "receivedAt",
              "superseded",
              "artifacts"
            ],
            "properties": {
              "exportRecordId": {
                "type": "string"
              },
              "sourcePartnerId": {
                "type": "string"
              },
              "adopterPartnerId": {
                "type": "string"
              },
              "externalExportId": {
                "type": "string"
              },
              "exportVersion": {
                "type": "integer",
                "minimum": 1
              },
              "receivedAt": {
                "type": "string",
                "format": "date-time"
              },
              "superseded": {
                "type": "boolean"
              },
              "artifacts": {
                "type": "array",
                "items": {
                  "type": "object",
                  "additionalProperties": true,
                  "required": [
                    "artifactRef",
                    "contentType",
                    "byteLength",
                    "sha256",
                    "adoptable",
                    "adoptedByThisParty"
                  ],
                  "properties": {}
                }
              }
            }
          }
        }
      }
    },
    "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": "evidence-candidates-v2",
    "caseId": "case_test_123",
    "party": "claimant",
    "candidates": [
      {
        "exportRecordId": "exportRecordId_test",
        "sourcePartnerId": "partner_test_123",
        "adopterPartnerId": "partner_test_123",
        "externalExportId": "externalExportId_test",
        "exportVersion": 1,
        "receivedAt": "2026-08-09T12:00:00.000Z",
        "superseded": false,
        "artifacts": [
          {
            "artifactRef": "artifactRef_test",
            "contentType": "contentType_test",
            "byteLength": 1,
            "sha256": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
            "adoptable": false,
            "adoptedByThisParty": false
          }
        ]
      }
    ]
  },
  "requestId": "requestId_test"
}

Usage notes

  • Responses reflect the current authoritative resource state.