Service


Click here for a complete list of operations.

CalculateActualIntYearAmortizedPayment

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
loan_amount:
interest_rate:
number_of_payments:
number_of_payments_due:
payments_per_year:
interestyearapplied:
interestyearcalc:
startdate_YYYYMMDD:
maturitydate_YYYYMMDD:
interestmethod:
firstpaymentdate_YYYYMMDD:
accrual_cutoff:
interestperiod:
interestpayment_dayvalue:
firstorlastdayinterest:
begorendaccrual:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /Service.asmx HTTP/1.1
Host: dev.nortridge.locproject.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://nortridge.com/CalculateActualIntYearAmortizedPayment"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <CalculateActualIntYearAmortizedPayment xmlns="http://nortridge.com/">
      <loan_amount>double</loan_amount>
      <interest_rate>double</interest_rate>
      <number_of_payments>int</number_of_payments>
      <number_of_payments_due>int</number_of_payments_due>
      <payments_per_year>int</payments_per_year>
      <interestyearapplied>string</interestyearapplied>
      <interestyearcalc>string</interestyearcalc>
      <startdate_YYYYMMDD>string</startdate_YYYYMMDD>
      <maturitydate_YYYYMMDD>string</maturitydate_YYYYMMDD>
      <interestmethod>string</interestmethod>
      <firstpaymentdate_YYYYMMDD>string</firstpaymentdate_YYYYMMDD>
      <accrual_cutoff>int</accrual_cutoff>
      <interestperiod>string</interestperiod>
      <interestpayment_dayvalue>int</interestpayment_dayvalue>
      <firstorlastdayinterest>string</firstorlastdayinterest>
      <begorendaccrual>string</begorendaccrual>
    </CalculateActualIntYearAmortizedPayment>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <CalculateActualIntYearAmortizedPaymentResponse xmlns="http://nortridge.com/">
      <CalculateActualIntYearAmortizedPaymentResult>string</CalculateActualIntYearAmortizedPaymentResult>
    </CalculateActualIntYearAmortizedPaymentResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /Service.asmx HTTP/1.1
Host: dev.nortridge.locproject.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <CalculateActualIntYearAmortizedPayment xmlns="http://nortridge.com/">
      <loan_amount>double</loan_amount>
      <interest_rate>double</interest_rate>
      <number_of_payments>int</number_of_payments>
      <number_of_payments_due>int</number_of_payments_due>
      <payments_per_year>int</payments_per_year>
      <interestyearapplied>string</interestyearapplied>
      <interestyearcalc>string</interestyearcalc>
      <startdate_YYYYMMDD>string</startdate_YYYYMMDD>
      <maturitydate_YYYYMMDD>string</maturitydate_YYYYMMDD>
      <interestmethod>string</interestmethod>
      <firstpaymentdate_YYYYMMDD>string</firstpaymentdate_YYYYMMDD>
      <accrual_cutoff>int</accrual_cutoff>
      <interestperiod>string</interestperiod>
      <interestpayment_dayvalue>int</interestpayment_dayvalue>
      <firstorlastdayinterest>string</firstorlastdayinterest>
      <begorendaccrual>string</begorendaccrual>
    </CalculateActualIntYearAmortizedPayment>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <CalculateActualIntYearAmortizedPaymentResponse xmlns="http://nortridge.com/">
      <CalculateActualIntYearAmortizedPaymentResult>string</CalculateActualIntYearAmortizedPaymentResult>
    </CalculateActualIntYearAmortizedPaymentResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /Service.asmx/CalculateActualIntYearAmortizedPayment?loan_amount=string&interest_rate=string&number_of_payments=string&number_of_payments_due=string&payments_per_year=string&interestyearapplied=string&interestyearcalc=string&startdate_YYYYMMDD=string&maturitydate_YYYYMMDD=string&interestmethod=string&firstpaymentdate_YYYYMMDD=string&accrual_cutoff=string&interestperiod=string&interestpayment_dayvalue=string&firstorlastdayinterest=string&begorendaccrual=string HTTP/1.1
Host: dev.nortridge.locproject.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://nortridge.com/">string</string>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /Service.asmx/CalculateActualIntYearAmortizedPayment HTTP/1.1
Host: dev.nortridge.locproject.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

loan_amount=string&interest_rate=string&number_of_payments=string&number_of_payments_due=string&payments_per_year=string&interestyearapplied=string&interestyearcalc=string&startdate_YYYYMMDD=string&maturitydate_YYYYMMDD=string&interestmethod=string&firstpaymentdate_YYYYMMDD=string&accrual_cutoff=string&interestperiod=string&interestpayment_dayvalue=string&firstorlastdayinterest=string&begorendaccrual=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://nortridge.com/">string</string>