GET api/MortgageAPP/GetMortgageAppTopTextList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
MortgageAppTopTextResponeseName | Description | Type | Additional information |
---|---|---|---|
textList | Collection of MortgageAppTopTextModel |
None. |
|
landingPage | string |
None. |
|
ResponseCode | ResponseCode |
None. |
|
AlertMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "textList": [ { "Subject": "sample string 1", "Desc": "sample string 2" }, { "Subject": "sample string 1", "Desc": "sample string 2" } ], "landingPage": "sample string 1", "ResponseCode": 1, "AlertMessage": "sample string 2" }
text/xml
Sample:
<MortgageAppTopTextResponese xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CentaMortgageWebAPI.Models"> <AlertMessage>sample string 2</AlertMessage> <ResponseCode>Success</ResponseCode> <landingPage>sample string 1</landingPage> <textList> <MortgageAppTopTextModel> <Desc>sample string 2</Desc> <Subject>sample string 1</Subject> </MortgageAppTopTextModel> <MortgageAppTopTextModel> <Desc>sample string 2</Desc> <Subject>sample string 1</Subject> </MortgageAppTopTextModel> </textList> </MortgageAppTopTextResponese>