GETpartial

Read the linked appeal fee status

Flag-gated preview over the shared remedy operations. Session/case proofs retain existing scope. Partner writes require an explicit appeal:file, appeal:answer, or post_award:request membership grant; existing memberships are not widened. Idempotency-Key shares durable receipts with hosted aliases. Only internal actors decide remedies or confirm provider payment. POST post-award-requests accepts action=respond with requestId and response for the opposite party’s response.

/api/cases/{id}/appeals/{appealId}/feegetAppealFeePreview

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.

CanonicalPartnerBearer

CanonicalSession

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"}
appealIdpathRequired{"type":"string"}

Responses

200

Authorized read, response, or recovered result.

application/json

{
  "$ref": "#/components/schemas/CanonicalGetAppealFeePreviewResponse",
  "type": "object",
  "properties": {
    "data": {
      "$ref": "#/components/schemas/CanonicalAppealFee",
      "type": "object",
      "properties": {
        "quote": {
          "$ref": "#/components/schemas/CanonicalAppealFeeQuote",
          "type": "object",
          "properties": {
            "amountUsd": {
              "type": "number"
            },
            "amountDisplay": {
              "type": "string"
            },
            "explanation": {
              "type": "string"
            },
            "waived": {
              "type": "boolean"
            }
          },
          "required": [
            "amountUsd",
            "amountDisplay",
            "explanation",
            "waived"
          ]
        },
        "feeChallenge": {
          "$ref": "#/components/schemas/CanonicalAppealFeeChallenge",
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "const": "fiat_card"
            },
            "feeRecordId": {
              "type": "string"
            },
            "amountUsd": {
              "type": "number"
            },
            "deadlineAt": {
              "type": "string"
            },
            "checkoutEndpoint": {
              "type": "string"
            }
          },
          "required": [
            "method",
            "feeRecordId",
            "amountUsd",
            "checkoutEndpoint"
          ]
        },
        "feeStatus": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "payable",
                "confirmed"
              ]
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "quote",
        "feeStatus"
      ]
    },
    "requestId": {
      "type": "string"
    }
  },
  "required": [
    "data",
    "requestId"
  ],
  "x-code-source": "lib/proceeding/remedy-operations.ts"
}
201

Remedy act recorded.

application/json

{
  "$ref": "#/components/schemas/CanonicalGetAppealFeePreviewResponse",
  "type": "object",
  "properties": {
    "data": {
      "$ref": "#/components/schemas/CanonicalAppealFee",
      "type": "object",
      "properties": {
        "quote": {
          "$ref": "#/components/schemas/CanonicalAppealFeeQuote",
          "type": "object",
          "properties": {
            "amountUsd": {
              "type": "number"
            },
            "amountDisplay": {
              "type": "string"
            },
            "explanation": {
              "type": "string"
            },
            "waived": {
              "type": "boolean"
            }
          },
          "required": [
            "amountUsd",
            "amountDisplay",
            "explanation",
            "waived"
          ]
        },
        "feeChallenge": {
          "$ref": "#/components/schemas/CanonicalAppealFeeChallenge",
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "const": "fiat_card"
            },
            "feeRecordId": {
              "type": "string"
            },
            "amountUsd": {
              "type": "number"
            },
            "deadlineAt": {
              "type": "string"
            },
            "checkoutEndpoint": {
              "type": "string"
            }
          },
          "required": [
            "method",
            "feeRecordId",
            "amountUsd",
            "checkoutEndpoint"
          ]
        },
        "feeStatus": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "payable",
                "confirmed"
              ]
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "quote",
        "feeStatus"
      ]
    },
    "requestId": {
      "type": "string"
    }
  },
  "required": [
    "data",
    "requestId"
  ],
  "x-code-source": "lib/proceeding/remedy-operations.ts"
}
404

Preview disabled or authorized resource unavailable.

default

Stable problem code and requestId.

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": {
    "quote": {
      "amountUsd": 0.9,
      "amountDisplay": "amountDisplay_test",
      "explanation": "explanation_test",
      "waived": false
    },
    "feeStatus": "payable"
  },
  "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.