GET api/FinancialData/GetSNTRGCalculators

Request Information

URI Parameters

None.

Body Parameters

SNTRGInputModels
NameDescriptionTypeAdditional information
GoalAmount

decimal number

None.

CSavToday

integer

None.

PeriodOfTime

decimal number

None.

RateOfInterest

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "GoalAmount": 1.1,
  "CSavToday": 2,
  "PeriodOfTime": 3.0,
  "RateOfInterest": 4
}

application/xml, text/xml

Sample:
<SNTRGInputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMDataService.Models">
  <CSavToday>2</CSavToday>
  <GoalAmount>1.1</GoalAmount>
  <PeriodOfTime>3</PeriodOfTime>
  <RateOfInterest>4</RateOfInterest>
</SNTRGInputModels>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SNTRGOutputModels
NameDescriptionTypeAdditional information
SNTRGCalculator

Collection of SNTRGModels

None.

Status

string

Required

Message

string

Required

MobileOtp

integer

None.

LoginUserSessionID

integer

Required

IsWMPRO

boolean

None.

IsMagic

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SNTRGCalculator": [
    {
      "MonthlySavings": "sample string 1"
    },
    {
      "MonthlySavings": "sample string 1"
    }
  ],
  "Status": "sample string 1",
  "Message": "sample string 2",
  "MobileOtp": 3,
  "LoginUserSessionID": 4,
  "IsWMPRO": true,
  "IsMagic": "sample string 6"
}

application/xml, text/xml

Sample:
<SNTRGOutputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMDataService.Models">
  <IsMagic>sample string 6</IsMagic>
  <IsWMPRO>true</IsWMPRO>
  <LoginUserSessionID>4</LoginUserSessionID>
  <Message>sample string 2</Message>
  <MobileOtp>3</MobileOtp>
  <Status>sample string 1</Status>
  <SNTRGCalculator>
    <SNTRGModels>
      <MonthlySavings>sample string 1</MonthlySavings>
    </SNTRGModels>
    <SNTRGModels>
      <MonthlySavings>sample string 1</MonthlySavings>
    </SNTRGModels>
  </SNTRGCalculator>
</SNTRGOutputModels>