GET api/MortgageOffer/GetFilter?languageType={languageType}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
languageType | CmsLanguage |
Required |
Body Parameters
None.
Response Information
Resource Description
FilterResponseName | Description | Type | Additional information |
---|---|---|---|
FilterList | Collection of FilterModel |
None. |
|
ResponseCode | ResponseCode |
None. |
|
AlertMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "FilterList": [ { "FilterID": 1, "FilterName": "sample string 2" }, { "FilterID": 1, "FilterName": "sample string 2" } ], "ResponseCode": 1, "AlertMessage": "sample string 1" }
text/xml
Sample:
<FilterResponse 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> <FilterList> <FilterModel> <FilterID>1</FilterID> <FilterName>sample string 2</FilterName> </FilterModel> <FilterModel> <FilterID>1</FilterID> <FilterName>sample string 2</FilterName> </FilterModel> </FilterList> </FilterResponse>