GET api/Evaluation/GetFloorList?blockCode={blockCode}&languageType={languageType}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| blockCode | string | Required | |
| languageType | CmsLanguage | Default value is TC | 
Body Parameters
None.
Response Information
Resource Description
FloorResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| FloorList | Collection of FloorInfo | None. | |
| ResponseCode | ResponseCode | None. | |
| AlertMessage | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "FloorList": [
    {
      "FloorCode": "sample string 1",
      "FloorName": "sample string 2"
    },
    {
      "FloorCode": "sample string 1",
      "FloorName": "sample string 2"
    }
  ],
  "ResponseCode": 1,
  "AlertMessage": "sample string 1"
}
        text/xml
            Sample:
<FloorResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CentaMortgageWebAPI.Models">
  <AlertMessage>sample string 1</AlertMessage>
  <ResponseCode>Success</ResponseCode>
  <FloorList>
    <FloorInfo>
      <FloorCode>sample string 1</FloorCode>
      <FloorName>sample string 2</FloorName>
    </FloorInfo>
    <FloorInfo>
      <FloorCode>sample string 1</FloorCode>
      <FloorName>sample string 2</FloorName>
    </FloorInfo>
  </FloorList>
</FloorResponse>