GET api/admin/masters/FeeCalculatedSlabPaged?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNo

integer

Required

PageSize

integer

Required

SearchTerm

string

Required

Body Parameters

None.

Response Information

Resource Description

MasterAllFeeCalculationAPIVM
NameDescriptionTypeAdditional information
allFeeCalculationSlabs

Collection of MstFeeCalculationSlab

None.

totalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "allFeeCalculationSlabs": [
    {
      "FeeCalID": 1,
      "CompanyValuation": "sample string 2",
      "CalculatedFee": 3,
      "RangeAmount": 4.0
    },
    {
      "FeeCalID": 1,
      "CompanyValuation": "sample string 2",
      "CalculatedFee": 3,
      "RangeAmount": 4.0
    }
  ],
  "totalRecords": 1
}

application/xml, text/xml

Sample:
<MasterAllFeeCalculationAPIVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAW.Entities.CustomModels">
  <allFeeCalculationSlabs>
    <MstFeeCalculationSlab>
      <CalculatedFee>3</CalculatedFee>
      <CompanyValuation>sample string 2</CompanyValuation>
      <FeeCalID>1</FeeCalID>
      <RangeAmount>4</RangeAmount>
    </MstFeeCalculationSlab>
    <MstFeeCalculationSlab>
      <CalculatedFee>3</CalculatedFee>
      <CompanyValuation>sample string 2</CompanyValuation>
      <FeeCalID>1</FeeCalID>
      <RangeAmount>4</RangeAmount>
    </MstFeeCalculationSlab>
  </allFeeCalculationSlabs>
  <totalRecords>1</totalRecords>
</MasterAllFeeCalculationAPIVM>