GET api/Office/ClaimCalculations/CalculateOnlineClaimTotals/{claimAmount}/{companyId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
claimAmount

decimal number

decimal number

Required

companyId

integer

integer

Required

Body Parameters

None.

Response Information

Resource Description

ClaimProcessingTotals
NameDescriptionTypeAdditional information
ClaimSubTotal

decimal number

decimal number

None.

AdminFee

decimal number

decimal number

None.

AdminFeeAdjusted

decimal number

decimal number

None.

ClaimAdminFeeAdjustment

decimal number

decimal number

None.

ClaimManualProcessingFee

decimal number

decimal number

None.

ClaimPaperClaimFee

decimal number

decimal number

None.

GSTAmount

decimal number

decimal number

None.

RSTAmount

decimal number

decimal number

None.

PremiumTaxAmount

decimal number

decimal number

None.

GrandTotal

decimal number

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "ClaimSubTotal": 1.0,
  "AdminFee": 2.0,
  "AdminFeeAdjusted": 3.0,
  "ClaimAdminFeeAdjustment": 4.0,
  "ClaimManualProcessingFee": 5.0,
  "ClaimPaperClaimFee": 6.0,
  "GSTAmount": 7.0,
  "RSTAmount": 8.0,
  "PremiumTaxAmount": 9.0,
  "GrandTotal": 10.0
}

application/xml, text/xml

Sample:
<ClaimProcessingTotals xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CC.Interfaces.POCO">
  <AdminFee>2</AdminFee>
  <AdminFeeAdjusted>3</AdminFeeAdjusted>
  <ClaimAdminFeeAdjustment>4</ClaimAdminFeeAdjustment>
  <ClaimManualProcessingFee>5</ClaimManualProcessingFee>
  <ClaimPaperClaimFee>6</ClaimPaperClaimFee>
  <ClaimSubTotal>1</ClaimSubTotal>
  <GSTAmount>7</GSTAmount>
  <GrandTotal>10</GrandTotal>
  <PremiumTaxAmount>9</PremiumTaxAmount>
  <RSTAmount>8</RSTAmount>
</ClaimProcessingTotals>