GET api/LatestOffers/GetLatestOffersForm?languageType={languageType}&formType={formType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| languageType | CmsLanguage |
Required |
|
| formType | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PageList | Collection of PageModel |
None. |
|
| ResponseCode | ResponseCode |
None. |
|
| AlertMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PageList": [
{
"Subject": "sample string 1",
"Url": "sample string 2"
},
{
"Subject": "sample string 1",
"Url": "sample string 2"
}
],
"ResponseCode": 1,
"AlertMessage": "sample string 1"
}
text/xml
Sample:
<PageResponse 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>
<PageList>
<PageModel>
<Subject>sample string 1</Subject>
<Url>sample string 2</Url>
</PageModel>
<PageModel>
<Subject>sample string 1</Subject>
<Url>sample string 2</Url>
</PageModel>
</PageList>
</PageResponse>