GET api/Evaluation/GetBlockList?estateCode={estateCode}&languageType={languageType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| estateCode | string |
Required |
|
| languageType | CmsLanguage |
Default value is TC |
Body Parameters
None.
Response Information
Resource Description
BlockResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| BlockList | Collection of BlockInfo |
None. |
|
| ResponseCode | ResponseCode |
None. |
|
| AlertMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"BlockList": [
{
"BlockCode": "sample string 1",
"BlockName": "sample string 2",
"BlockChinesename": "sample string 3"
},
{
"BlockCode": "sample string 1",
"BlockName": "sample string 2",
"BlockChinesename": "sample string 3"
}
],
"ResponseCode": 1,
"AlertMessage": "sample string 1"
}
text/xml
Sample:
<BlockResponse 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>
<BlockList>
<BlockInfo>
<BlockChinesename>sample string 3</BlockChinesename>
<BlockCode>sample string 1</BlockCode>
<BlockName>sample string 2</BlockName>
</BlockInfo>
<BlockInfo>
<BlockChinesename>sample string 3</BlockChinesename>
<BlockCode>sample string 1</BlockCode>
<BlockName>sample string 2</BlockName>
</BlockInfo>
</BlockList>
</BlockResponse>