GETpartial

Read disclosed filings and evidence

Controlled by PEOPLES_COURT_API_CANONICAL_ROUTES. The shared operation rechecks current authority and pinned Rules. A party sees its own filings and jointly disclosed opponent material only.

/api/cases/{id}/submissionslistSubmissionsPreview

Authentication and authority

Use one listed account-session, scoped OAuth, or partner credential alternative. Account tokens retain the approving account’s authority. Cookie-authenticated writes require same-origin authorization. Alternatives are OR; schemes in one alternative are AND.

CanonicalSession

CanonicalPartnerBearer

AccountOAuth

Account tokens authorize only their approving account and case scope. S256 PKCE is mandatory on the code flow. Explicit reacceptance is required after Rules/disclosure changes.

Parameters

NameLocationRequirementSchema
idpathRequired{"type":"string"}

Responses

200

Authorized operation result.

application/json

{
  "$ref": "#/components/schemas/CanonicalListSubmissionsPreviewResponse",
  "type": "object",
  "properties": {
    "data": {
      "$ref": "#/components/schemas/CanonicalSubmissionList",
      "type": "object",
      "properties": {
        "submissions": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/CanonicalSubmission",
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "disputeId": {
                "type": "string"
              },
              "party": {
                "type": "string",
                "enum": [
                  "claimant",
                  "respondent"
                ]
              },
              "brief": {
                "type": "string"
              },
              "evidenceIds": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "submittedAt": {
                "type": "string"
              },
              "phase": {
                "type": "string"
              },
              "sealedAt": {
                "type": "string"
              },
              "revealedAt": {
                "type": "string"
              },
              "contentHash": {
                "type": "string"
              },
              "supersededAt": {
                "type": "string"
              },
              "supersededBy": {
                "type": "string"
              }
            },
            "required": [
              "id",
              "party",
              "brief",
              "evidenceIds",
              "submittedAt"
            ]
          }
        },
        "evidence": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/CanonicalEvidence",
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "disputeId": {
                "type": "string"
              },
              "party": {
                "type": "string",
                "enum": [
                  "claimant",
                  "respondent"
                ]
              },
              "kind": {
                "type": "string"
              },
              "filename": {
                "type": "string"
              },
              "mimeType": {
                "type": "string"
              },
              "contentHash": {
                "type": "string"
              },
              "createdAt": {
                "type": "string"
              },
              "revealedAt": {
                "type": "string"
              },
              "extractedText": {
                "type": "string"
              }
            },
            "required": [
              "id",
              "party"
            ]
          }
        },
        "submissionHistory": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/CanonicalSubmission",
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "disputeId": {
                "type": "string"
              },
              "party": {
                "type": "string",
                "enum": [
                  "claimant",
                  "respondent"
                ]
              },
              "brief": {
                "type": "string"
              },
              "evidenceIds": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "submittedAt": {
                "type": "string"
              },
              "phase": {
                "type": "string"
              },
              "sealedAt": {
                "type": "string"
              },
              "revealedAt": {
                "type": "string"
              },
              "contentHash": {
                "type": "string"
              },
              "supersededAt": {
                "type": "string"
              },
              "supersededBy": {
                "type": "string"
              }
            },
            "required": [
              "id",
              "party",
              "brief",
              "evidenceIds",
              "submittedAt"
            ]
          }
        },
        "evidenceHistory": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/CanonicalEvidence",
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "disputeId": {
                "type": "string"
              },
              "party": {
                "type": "string",
                "enum": [
                  "claimant",
                  "respondent"
                ]
              },
              "kind": {
                "type": "string"
              },
              "filename": {
                "type": "string"
              },
              "mimeType": {
                "type": "string"
              },
              "contentHash": {
                "type": "string"
              },
              "createdAt": {
                "type": "string"
              },
              "revealedAt": {
                "type": "string"
              },
              "extractedText": {
                "type": "string"
              }
            },
            "required": [
              "id",
              "party"
            ]
          }
        },
        "phase": {
          "type": "string"
        },
        "deadlines": {
          "type": "object",
          "properties": {
            "answer": {
              "type": "string"
            },
            "evidence": {
              "type": "string"
            },
            "rebuttal": {
              "type": "string"
            }
          }
        },
        "operatorAccess": {
          "type": "string"
        }
      },
      "required": [
        "submissions",
        "evidence",
        "submissionHistory",
        "evidenceHistory"
      ]
    },
    "requestId": {
      "type": "string"
    }
  },
  "required": [
    "data",
    "requestId"
  ],
  "x-code-source": "lib/submissions/operations.ts"
}
404

Preview disabled or authorized resource unavailable.

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": {
    "submissions": [
      {
        "id": "id_test",
        "party": "claimant",
        "brief": "The attached test record supports this position.",
        "evidenceIds": [
          "evidenceIds_test"
        ],
        "submittedAt": "submittedAt_test"
      }
    ],
    "evidence": [
      {
        "id": "id_test",
        "party": "claimant"
      }
    ],
    "submissionHistory": [
      {
        "id": "id_test",
        "party": "claimant",
        "brief": "The attached test record supports this position.",
        "evidenceIds": [
          "evidenceIds_test"
        ],
        "submittedAt": "submittedAt_test"
      }
    ],
    "evidenceHistory": [
      {
        "id": "id_test",
        "party": "claimant"
      }
    ]
  },
  "requestId": "requestId_test"
}

Errors

Read the response status and stable error code. See errors and rate limits for recovery. Refresh the resource before resolving a state or digest conflict.

Idempotency and retries

  • For throttling, honor Retry-After when present. Back off on retryable server failures.