POST api/savings/calculate
Calculate schedule for term deposit savings.
Requires Authorisation
The api request must supply authenticated token in a custom variable in the request header. The custom variable name is configured in web.config. The default name of the custom variable is “X-Fern-Token”.
Requires Api License and User Access
The api requires license and user permission for API ID, POSTapi/savings/calculate. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.
Request Information
URI Parameters
None.
Body Parameters
Savings account data to calculate.
SavingsAccountDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OffsetInterestRate |
OffsetInterestRate. |
decimal number | OffsetInterestRate = Account's Interest Rate - Product Interest Rate. |
| MoneyLaunderingAnswers |
MoneyLaunderingAnswers. |
Collection of MoneyLaunderingAnswerDto | |
| TermPeriodNum |
Term Period for this account. |
integer | |
| TermPeriodID |
Term Period ID for this account. |
byte | |
| MaturityDate |
Maturity Date for this account. |
string | |
| StartDate |
Start Date of this account. |
string | Required |
| GracePeriodEndDate |
Grace Period End Date for this account. |
string | |
| AgreedAmount |
Agreed Amount for this account. |
decimal number | |
| RolloverProductID |
Rollover Product for this account. |
integer | |
| RolloverInstruction |
Rollover Instruction for this account. |
byte | |
| RolloverCUAccountID |
Rollover Account for this account. |
integer | |
| InitialPaymentDate |
Initial Payment Date for this account. |
string | |
| PaymentAmount |
Payment Amount for this account. |
decimal number | |
| PaymentPeriodNum |
Payment Period for this account. |
integer | |
| PaymentPeriodID |
Payment Period ID. |
byte | |
| InterestRate |
Interest Rate for this account. |
decimal number | Required. |
| m_InterestRateOffset |
Interest Rate Offset for this account. |
decimal number | |
| BonusInterestRate |
Bonus Interest Rate for this account. |
decimal number | |
| FeeTargetAccountID |
Fee Target AccountID Rate for this account. |
integer | |
| InterestTargetAccountID |
Interest Target Account ID for this account. |
integer | |
| RiskFreeAmount |
Risk Free Amount for this account. |
decimal number | |
| DebitCardReference |
Debit Card Reference for this account |
string | |
| WithdrawalsRequireOverride |
Withdrawals Require Override for this account. |
boolean | |
| OverrideTax |
Override Tax for this account. |
boolean | |
| ExcludeFromLoanPercentageBlock |
Exclude From Loan Percentage Block for this account. |
boolean | |
| Schedule |
Schedule of Savings. |
Collection of SavingsScheduleDto | |
| FinalValue |
Final Value for this account. |
decimal number | |
| InterestPayable |
Interest Payable for this account. |
decimal number | |
| TaxPayable |
Tax Payable for this account. |
decimal number | |
| NormalTransactionLimit |
Normal Transaction Limit for this account. |
decimal number | |
| CUAccountID |
Unique identifier of an account. |
integer | Required |
| CustomerID |
Unique identifier of a customer who owns this account. |
integer | Required. |
| ProductId |
Unique identifier of a product. |
integer | Required. |
| CUAccountPortfolioID |
Unique identifer of a portfolio. |
integer | |
| Surveys |
Surveys of an account. |
Collection of SurveyDto | |
| AnalysisLinks |
Analysis Links of an account. |
Collection of AnalysisLinkDto | |
| Description |
Account's Description. |
string | ReadOnly. |
| Name |
Account's Name. |
string | |
| CUAccountRatingID |
Rating id of an account. |
integer | |
| CUAccountIndustryCodeID |
Industry code of an account. |
integer | |
| RegularStatements |
Customer receives regular statements (default to be set at account level. |
boolean | |
| StatementFrequencyNum |
Number of periods between statements. |
integer | |
| StatementFrequencyID |
ID of the statement period. |
byte | |
| StatementLastRun |
When the statement was last run. |
string | |
| CurrencyId |
Currency ID of an account. |
integer | |
| Active |
Active or Inactive status of an account |
boolean | |
| AccStatus | byte | ||
| AccountNumber | string |
Request Formats
application/json, text/json
{
"savingsAccountID": 1,
"offsetInterestRate": 1.1,
"moneyLaunderingAnswers": [
{
"moneyLaunderingAnswerID": 1,
"moneyLaunderingQuestionID": 1,
"cuAccountID": 1,
"answer": "sample string 1",
"addDate": "sample string 2",
"addUserID": 1,
"editDate": "sample string 3",
"editUserID": 1
},
{
"moneyLaunderingAnswerID": 1,
"moneyLaunderingQuestionID": 1,
"cuAccountID": 1,
"answer": "sample string 1",
"addDate": "sample string 2",
"addUserID": 1,
"editDate": "sample string 3",
"editUserID": 1
}
],
"termPeriodNum": 1,
"termPeriodID": 64,
"maturityDate": "sample string 1",
"startDate": "sample string 2",
"gracePeriodEndDate": "sample string 3",
"agreedAmount": 1.0,
"rolloverProductID": 1,
"rolloverInstruction": 64,
"rolloverCUAccountID": 1,
"initialPaymentDate": "sample string 4",
"paymentAmount": 1.0,
"paymentPeriodNum": 1,
"paymentPeriodID": 64,
"interestRate": 1.1,
"m_InterestRateOffset": 1.1,
"bonusInterestRate": 1.1,
"feeTargetAccountID": 1,
"interestTargetAccountID": 1,
"riskFreeAmount": 1.0,
"debitCardReference": "sample string 5",
"withdrawalsRequireOverride": true,
"overrideTax": true,
"excludeFromLoanPercentageBlock": true,
"schedule": [
{
"scheduleID": 1,
"cuSavingID": 1,
"period": 1,
"repaymentDate": "sample string 1",
"savingsPayment": 1.0,
"savingsPaymentPaid": 1.0,
"interestPayment": 1.0,
"interestPaymentPaid": 1.0,
"feePayment": 1.0,
"feePaymentPaid": 1.0,
"taxPayment": 1.0,
"taxPaymentPaid": 1.0,
"balance": 1.0,
"paymentOnlyBalance": 1.0
},
{
"scheduleID": 1,
"cuSavingID": 1,
"period": 1,
"repaymentDate": "sample string 1",
"savingsPayment": 1.0,
"savingsPaymentPaid": 1.0,
"interestPayment": 1.0,
"interestPaymentPaid": 1.0,
"feePayment": 1.0,
"feePaymentPaid": 1.0,
"taxPayment": 1.0,
"taxPaymentPaid": 1.0,
"balance": 1.0,
"paymentOnlyBalance": 1.0
}
],
"finalValue": 1.0,
"interestPayable": 1.0,
"taxPayable": 1.0,
"normalTransactionLimit": 1.0,
"cuAccountID": 1,
"customerID": 1,
"productId": 1,
"cuAccountPortfolioID": 1,
"drAmount": null,
"crAmount": null,
"surveys": [
{
"surveyID": 1,
"userDefinedFieldGroupID": 1,
"date": "sample string 1",
"totalScore": 1.0,
"udfLinks": [
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
},
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
}
]
},
{
"surveyID": 1,
"userDefinedFieldGroupID": 1,
"date": "sample string 1",
"totalScore": 1.0,
"udfLinks": [
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
},
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
}
]
}
],
"analysisLinks": [
{
"analysisLinkID": 1,
"analysisFieldID": 1,
"customerID": 1,
"cuAccountID": 1,
"receiptNo": 1,
"productID": 1,
"accountID": 1,
"journalPageID": 1,
"journalEntryID": 1,
"journalPostID": 1,
"recurringPageID": 1,
"recurringEntryID": 1,
"cuInsurancePolicyID": 1,
"selected": true
},
{
"analysisLinkID": 1,
"analysisFieldID": 1,
"customerID": 1,
"cuAccountID": 1,
"receiptNo": 1,
"productID": 1,
"accountID": 1,
"journalPageID": 1,
"journalEntryID": 1,
"journalPostID": 1,
"recurringPageID": 1,
"recurringEntryID": 1,
"cuInsurancePolicyID": 1,
"selected": true
}
],
"description": "sample string 6",
"name": "sample string 7",
"cuAccountRatingID": 1,
"cuAccountIndustryCodeID": 1,
"regularStatements": true,
"statementFrequencyNum": 1,
"statementFrequencyID": 64,
"statementLastRun": "sample string 8",
"currencyId": 1,
"active": true,
"accStatus": 64,
"accountNumber": "sample string 9"
}
application/xml, text/xml
<SavingsAccountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">
<AccStatus xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">64</AccStatus>
<AccountNumber xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 9</AccountNumber>
<Active xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">true</Active>
<AnalysisLinks xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.Analysis" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">
<d2p1:AnalysisLinkDto>
<d2p1:AccountID>1</d2p1:AccountID>
<d2p1:AnalysisFieldID>1</d2p1:AnalysisFieldID>
<d2p1:AnalysisLinkID>1</d2p1:AnalysisLinkID>
<d2p1:CUAccountID>1</d2p1:CUAccountID>
<d2p1:CUInsurancePolicyID>1</d2p1:CUInsurancePolicyID>
<d2p1:CustomerID>1</d2p1:CustomerID>
<d2p1:JournalEntryID>1</d2p1:JournalEntryID>
<d2p1:JournalPageID>1</d2p1:JournalPageID>
<d2p1:JournalPostID>1</d2p1:JournalPostID>
<d2p1:ProductID>1</d2p1:ProductID>
<d2p1:ReceiptNo>1</d2p1:ReceiptNo>
<d2p1:RecurringEntryID>1</d2p1:RecurringEntryID>
<d2p1:RecurringPageID>1</d2p1:RecurringPageID>
<d2p1:Selected>true</d2p1:Selected>
</d2p1:AnalysisLinkDto>
<d2p1:AnalysisLinkDto>
<d2p1:AccountID>1</d2p1:AccountID>
<d2p1:AnalysisFieldID>1</d2p1:AnalysisFieldID>
<d2p1:AnalysisLinkID>1</d2p1:AnalysisLinkID>
<d2p1:CUAccountID>1</d2p1:CUAccountID>
<d2p1:CUInsurancePolicyID>1</d2p1:CUInsurancePolicyID>
<d2p1:CustomerID>1</d2p1:CustomerID>
<d2p1:JournalEntryID>1</d2p1:JournalEntryID>
<d2p1:JournalPageID>1</d2p1:JournalPageID>
<d2p1:JournalPostID>1</d2p1:JournalPostID>
<d2p1:ProductID>1</d2p1:ProductID>
<d2p1:ReceiptNo>1</d2p1:ReceiptNo>
<d2p1:RecurringEntryID>1</d2p1:RecurringEntryID>
<d2p1:RecurringPageID>1</d2p1:RecurringPageID>
<d2p1:Selected>true</d2p1:Selected>
</d2p1:AnalysisLinkDto>
</AnalysisLinks>
<CUAccountID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountID>
<CUAccountIndustryCodeID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountIndustryCodeID>
<CUAccountPortfolioID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountPortfolioID>
<CUAccountRatingID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountRatingID>
<CurrencyId xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CurrencyId>
<CustomerID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CustomerID>
<Description xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 6</Description>
<Name xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 7</Name>
<ProductId xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</ProductId>
<RegularStatements xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">true</RegularStatements>
<StatementFrequencyID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">64</StatementFrequencyID>
<StatementFrequencyNum xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</StatementFrequencyNum>
<StatementLastRun xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 8</StatementLastRun>
<Surveys xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">
<SurveyDto>
<Date>sample string 1</Date>
<SurveyID>1</SurveyID>
<TotalScore>1</TotalScore>
<UDFLinks xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.UserDefinedFields">
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
</UDFLinks>
<UserDefinedFieldGroupID>1</UserDefinedFieldGroupID>
</SurveyDto>
<SurveyDto>
<Date>sample string 1</Date>
<SurveyID>1</SurveyID>
<TotalScore>1</TotalScore>
<UDFLinks xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.UserDefinedFields">
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
</UDFLinks>
<UserDefinedFieldGroupID>1</UserDefinedFieldGroupID>
</SurveyDto>
</Surveys>
<AgreedAmount>1</AgreedAmount>
<BonusInterestRate>1.1</BonusInterestRate>
<DebitCardReference>sample string 5</DebitCardReference>
<ExcludeFromLoanPercentageBlock>true</ExcludeFromLoanPercentageBlock>
<FeeTargetAccountID>1</FeeTargetAccountID>
<FinalValue>1</FinalValue>
<GracePeriodEndDate>sample string 3</GracePeriodEndDate>
<InitialPaymentDate>sample string 4</InitialPaymentDate>
<InterestPayable>1</InterestPayable>
<InterestRate>1.1</InterestRate>
<InterestTargetAccountID>1</InterestTargetAccountID>
<MaturityDate>sample string 1</MaturityDate>
<MoneyLaunderingAnswers>
<MoneyLaunderingAnswerDto>
<Answer>sample string 1</Answer>
<CUAccountID>1</CUAccountID>
<MoneyLaunderingAnswerID>1</MoneyLaunderingAnswerID>
<MoneyLaunderingQuestionID>1</MoneyLaunderingQuestionID>
</MoneyLaunderingAnswerDto>
<MoneyLaunderingAnswerDto>
<Answer>sample string 1</Answer>
<CUAccountID>1</CUAccountID>
<MoneyLaunderingAnswerID>1</MoneyLaunderingAnswerID>
<MoneyLaunderingQuestionID>1</MoneyLaunderingQuestionID>
</MoneyLaunderingAnswerDto>
</MoneyLaunderingAnswers>
<NormalTransactionLimit>1</NormalTransactionLimit>
<OffsetInterestRate>1.1</OffsetInterestRate>
<OverrideTax>true</OverrideTax>
<PaymentAmount>1</PaymentAmount>
<PaymentPeriodID>64</PaymentPeriodID>
<PaymentPeriodNum>1</PaymentPeriodNum>
<RiskFreeAmount>1</RiskFreeAmount>
<RolloverCUAccountID>1</RolloverCUAccountID>
<RolloverInstruction>64</RolloverInstruction>
<RolloverProductID>1</RolloverProductID>
<Schedule xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Accounts.Savings">
<d2p1:SavingsScheduleDto>
<d2p1:Balance>1</d2p1:Balance>
<d2p1:CUSavingID>1</d2p1:CUSavingID>
<d2p1:FeePayment>1</d2p1:FeePayment>
<d2p1:FeePaymentPaid>1</d2p1:FeePaymentPaid>
<d2p1:InterestPayment>1</d2p1:InterestPayment>
<d2p1:InterestPaymentPaid>1</d2p1:InterestPaymentPaid>
<d2p1:PaymentOnlyBalance>1</d2p1:PaymentOnlyBalance>
<d2p1:RepaymentDate>sample string 1</d2p1:RepaymentDate>
<d2p1:SavingsPayment>1</d2p1:SavingsPayment>
<d2p1:SavingsPaymentPaid>1</d2p1:SavingsPaymentPaid>
<d2p1:ScheduleID>1</d2p1:ScheduleID>
<d2p1:TaxPayment>1</d2p1:TaxPayment>
<d2p1:TaxPaymentPaid>1</d2p1:TaxPaymentPaid>
<d2p1:period>1</d2p1:period>
</d2p1:SavingsScheduleDto>
<d2p1:SavingsScheduleDto>
<d2p1:Balance>1</d2p1:Balance>
<d2p1:CUSavingID>1</d2p1:CUSavingID>
<d2p1:FeePayment>1</d2p1:FeePayment>
<d2p1:FeePaymentPaid>1</d2p1:FeePaymentPaid>
<d2p1:InterestPayment>1</d2p1:InterestPayment>
<d2p1:InterestPaymentPaid>1</d2p1:InterestPaymentPaid>
<d2p1:PaymentOnlyBalance>1</d2p1:PaymentOnlyBalance>
<d2p1:RepaymentDate>sample string 1</d2p1:RepaymentDate>
<d2p1:SavingsPayment>1</d2p1:SavingsPayment>
<d2p1:SavingsPaymentPaid>1</d2p1:SavingsPaymentPaid>
<d2p1:ScheduleID>1</d2p1:ScheduleID>
<d2p1:TaxPayment>1</d2p1:TaxPayment>
<d2p1:TaxPaymentPaid>1</d2p1:TaxPaymentPaid>
<d2p1:period>1</d2p1:period>
</d2p1:SavingsScheduleDto>
</Schedule>
<StartDate>sample string 2</StartDate>
<TaxPayable>1</TaxPayable>
<TermPeriodID>64</TermPeriodID>
<TermPeriodNum>1</TermPeriodNum>
<WithdrawalsRequireOverride>true</WithdrawalsRequireOverride>
<m_InterestRateOffset>1.1</m_InterestRateOffset>
</SavingsAccountDto>
application/x-www-form-urlencoded
Sample not available.
Response Information
Response Codes
Success Status:
- OK (200), please see resource description below.
Failed Status(es):
Resource Description
Returns calculated savings account data.
SavingsAccountDto| Name | Description | Type | Additional information |
|---|---|---|---|
| SavingsAccountID |
Unique Identifier of a savings account. |
integer | Read-Only. |
| OffsetInterestRate |
OffsetInterestRate. |
decimal number | OffsetInterestRate = Account's Interest Rate - Product Interest Rate. |
| MoneyLaunderingAnswers |
MoneyLaunderingAnswers. |
Collection of MoneyLaunderingAnswerDto | |
| TermPeriodNum |
Term Period for this account. |
integer | |
| TermPeriodID |
Term Period ID for this account. |
byte | |
| MaturityDate |
Maturity Date for this account. |
string | |
| StartDate |
Start Date of this account. |
string | Required |
| GracePeriodEndDate |
Grace Period End Date for this account. |
string | |
| AgreedAmount |
Agreed Amount for this account. |
decimal number | |
| RolloverProductID |
Rollover Product for this account. |
integer | |
| RolloverInstruction |
Rollover Instruction for this account. |
byte | |
| RolloverCUAccountID |
Rollover Account for this account. |
integer | |
| InitialPaymentDate |
Initial Payment Date for this account. |
string | |
| PaymentAmount |
Payment Amount for this account. |
decimal number | |
| PaymentPeriodNum |
Payment Period for this account. |
integer | |
| PaymentPeriodID |
Payment Period ID. |
byte | |
| InterestRate |
Interest Rate for this account. |
decimal number | Required. |
| m_InterestRateOffset |
Interest Rate Offset for this account. |
decimal number | |
| BonusInterestRate |
Bonus Interest Rate for this account. |
decimal number | |
| FeeTargetAccountID |
Fee Target AccountID Rate for this account. |
integer | |
| InterestTargetAccountID |
Interest Target Account ID for this account. |
integer | |
| RiskFreeAmount |
Risk Free Amount for this account. |
decimal number | |
| DebitCardReference |
Debit Card Reference for this account |
string | |
| WithdrawalsRequireOverride |
Withdrawals Require Override for this account. |
boolean | |
| OverrideTax |
Override Tax for this account. |
boolean | |
| ExcludeFromLoanPercentageBlock |
Exclude From Loan Percentage Block for this account. |
boolean | |
| Schedule |
Schedule of Savings. |
Collection of SavingsScheduleDto | |
| FinalValue |
Final Value for this account. |
decimal number | |
| InterestPayable |
Interest Payable for this account. |
decimal number | |
| TaxPayable |
Tax Payable for this account. |
decimal number | |
| NormalTransactionLimit |
Normal Transaction Limit for this account. |
decimal number | |
| CUAccountID |
Unique identifier of an account. |
integer | Required |
| CustomerID |
Unique identifier of a customer who owns this account. |
integer | Required. |
| ProductId |
Unique identifier of a product. |
integer | Required. |
| CUAccountPortfolioID |
Unique identifer of a portfolio. |
integer | |
| DRAmount |
Credit Amount. |
decimal number | Read-Only. |
| CRAmount |
Debit Amount. |
decimal number | Read-Only. |
| Surveys |
Surveys of an account. |
Collection of SurveyDto | |
| AnalysisLinks |
Analysis Links of an account. |
Collection of AnalysisLinkDto | |
| Description |
Account's Description. |
string | ReadOnly. |
| Name |
Account's Name. |
string | |
| CUAccountRatingID |
Rating id of an account. |
integer | |
| CUAccountIndustryCodeID |
Industry code of an account. |
integer | |
| RegularStatements |
Customer receives regular statements (default to be set at account level. |
boolean | |
| StatementFrequencyNum |
Number of periods between statements. |
integer | |
| StatementFrequencyID |
ID of the statement period. |
byte | |
| StatementLastRun |
When the statement was last run. |
string | |
| CurrencyId |
Currency ID of an account. |
integer | |
| Active |
Active or Inactive status of an account |
boolean | |
| AccStatus | byte | ||
| AccountNumber | string |
Response Formats
application/json, text/json
{
"savingsAccountID": 1,
"offsetInterestRate": 1.1,
"moneyLaunderingAnswers": [
{
"moneyLaunderingAnswerID": 1,
"moneyLaunderingQuestionID": 1,
"cuAccountID": 1,
"answer": "sample string 1",
"addDate": "sample string 2",
"addUserID": 1,
"editDate": "sample string 3",
"editUserID": 1
},
{
"moneyLaunderingAnswerID": 1,
"moneyLaunderingQuestionID": 1,
"cuAccountID": 1,
"answer": "sample string 1",
"addDate": "sample string 2",
"addUserID": 1,
"editDate": "sample string 3",
"editUserID": 1
}
],
"termPeriodNum": 1,
"termPeriodID": 64,
"maturityDate": "sample string 1",
"startDate": "sample string 2",
"gracePeriodEndDate": "sample string 3",
"agreedAmount": 1.0,
"rolloverProductID": 1,
"rolloverInstruction": 64,
"rolloverCUAccountID": 1,
"initialPaymentDate": "sample string 4",
"paymentAmount": 1.0,
"paymentPeriodNum": 1,
"paymentPeriodID": 64,
"interestRate": 1.1,
"m_InterestRateOffset": 1.1,
"bonusInterestRate": 1.1,
"feeTargetAccountID": 1,
"interestTargetAccountID": 1,
"riskFreeAmount": 1.0,
"debitCardReference": "sample string 5",
"withdrawalsRequireOverride": true,
"overrideTax": true,
"excludeFromLoanPercentageBlock": true,
"schedule": [
{
"scheduleID": 1,
"cuSavingID": 1,
"period": 1,
"repaymentDate": "sample string 1",
"savingsPayment": 1.0,
"savingsPaymentPaid": 1.0,
"interestPayment": 1.0,
"interestPaymentPaid": 1.0,
"feePayment": 1.0,
"feePaymentPaid": 1.0,
"taxPayment": 1.0,
"taxPaymentPaid": 1.0,
"balance": 1.0,
"paymentOnlyBalance": 1.0
},
{
"scheduleID": 1,
"cuSavingID": 1,
"period": 1,
"repaymentDate": "sample string 1",
"savingsPayment": 1.0,
"savingsPaymentPaid": 1.0,
"interestPayment": 1.0,
"interestPaymentPaid": 1.0,
"feePayment": 1.0,
"feePaymentPaid": 1.0,
"taxPayment": 1.0,
"taxPaymentPaid": 1.0,
"balance": 1.0,
"paymentOnlyBalance": 1.0
}
],
"finalValue": 1.0,
"interestPayable": 1.0,
"taxPayable": 1.0,
"normalTransactionLimit": 1.0,
"cuAccountID": 1,
"customerID": 1,
"productId": 1,
"cuAccountPortfolioID": 1,
"drAmount": null,
"crAmount": null,
"surveys": [
{
"surveyID": 1,
"userDefinedFieldGroupID": 1,
"date": "sample string 1",
"totalScore": 1.0,
"udfLinks": [
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
},
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
}
]
},
{
"surveyID": 1,
"userDefinedFieldGroupID": 1,
"date": "sample string 1",
"totalScore": 1.0,
"udfLinks": [
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
},
{
"udfLinkID": 1,
"surveyID": 1,
"customerID": 1,
"cuAccountID": 1,
"productID": 1,
"cuInsurancePolicyID": 1,
"receiptNo": 1,
"branchID": 1,
"interactionID": 1,
"cuLoanReviewID": 1,
"udfFieldID": 1,
"value": "sample string 1",
"userDefinedFieldListID": 1,
"order": 1,
"mask": "sample string 2",
"mandatory": true,
"uniqueField": true,
"validateActiveUDF": true,
"udfType": 64,
"fieldName": "sample string 3",
"fieldCurrency": 1,
"dateValue": "sample string 4",
"customerTypes": 1
}
]
}
],
"analysisLinks": [
{
"analysisLinkID": 1,
"analysisFieldID": 1,
"customerID": 1,
"cuAccountID": 1,
"receiptNo": 1,
"productID": 1,
"accountID": 1,
"journalPageID": 1,
"journalEntryID": 1,
"journalPostID": 1,
"recurringPageID": 1,
"recurringEntryID": 1,
"cuInsurancePolicyID": 1,
"selected": true
},
{
"analysisLinkID": 1,
"analysisFieldID": 1,
"customerID": 1,
"cuAccountID": 1,
"receiptNo": 1,
"productID": 1,
"accountID": 1,
"journalPageID": 1,
"journalEntryID": 1,
"journalPostID": 1,
"recurringPageID": 1,
"recurringEntryID": 1,
"cuInsurancePolicyID": 1,
"selected": true
}
],
"description": "sample string 6",
"name": "sample string 7",
"cuAccountRatingID": 1,
"cuAccountIndustryCodeID": 1,
"regularStatements": true,
"statementFrequencyNum": 1,
"statementFrequencyID": 64,
"statementLastRun": "sample string 8",
"currencyId": 1,
"active": true,
"accStatus": 64,
"accountNumber": "sample string 9"
}
application/xml, text/xml
<SavingsAccountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">
<AccStatus xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">64</AccStatus>
<AccountNumber xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 9</AccountNumber>
<Active xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">true</Active>
<AnalysisLinks xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.Analysis" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">
<d2p1:AnalysisLinkDto>
<d2p1:AccountID>1</d2p1:AccountID>
<d2p1:AnalysisFieldID>1</d2p1:AnalysisFieldID>
<d2p1:AnalysisLinkID>1</d2p1:AnalysisLinkID>
<d2p1:CUAccountID>1</d2p1:CUAccountID>
<d2p1:CUInsurancePolicyID>1</d2p1:CUInsurancePolicyID>
<d2p1:CustomerID>1</d2p1:CustomerID>
<d2p1:JournalEntryID>1</d2p1:JournalEntryID>
<d2p1:JournalPageID>1</d2p1:JournalPageID>
<d2p1:JournalPostID>1</d2p1:JournalPostID>
<d2p1:ProductID>1</d2p1:ProductID>
<d2p1:ReceiptNo>1</d2p1:ReceiptNo>
<d2p1:RecurringEntryID>1</d2p1:RecurringEntryID>
<d2p1:RecurringPageID>1</d2p1:RecurringPageID>
<d2p1:Selected>true</d2p1:Selected>
</d2p1:AnalysisLinkDto>
<d2p1:AnalysisLinkDto>
<d2p1:AccountID>1</d2p1:AccountID>
<d2p1:AnalysisFieldID>1</d2p1:AnalysisFieldID>
<d2p1:AnalysisLinkID>1</d2p1:AnalysisLinkID>
<d2p1:CUAccountID>1</d2p1:CUAccountID>
<d2p1:CUInsurancePolicyID>1</d2p1:CUInsurancePolicyID>
<d2p1:CustomerID>1</d2p1:CustomerID>
<d2p1:JournalEntryID>1</d2p1:JournalEntryID>
<d2p1:JournalPageID>1</d2p1:JournalPageID>
<d2p1:JournalPostID>1</d2p1:JournalPostID>
<d2p1:ProductID>1</d2p1:ProductID>
<d2p1:ReceiptNo>1</d2p1:ReceiptNo>
<d2p1:RecurringEntryID>1</d2p1:RecurringEntryID>
<d2p1:RecurringPageID>1</d2p1:RecurringPageID>
<d2p1:Selected>true</d2p1:Selected>
</d2p1:AnalysisLinkDto>
</AnalysisLinks>
<CUAccountID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountID>
<CUAccountIndustryCodeID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountIndustryCodeID>
<CUAccountPortfolioID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountPortfolioID>
<CUAccountRatingID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CUAccountRatingID>
<CurrencyId xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CurrencyId>
<CustomerID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</CustomerID>
<Description xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 6</Description>
<Name xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 7</Name>
<ProductId xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</ProductId>
<RegularStatements xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">true</RegularStatements>
<StatementFrequencyID xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">64</StatementFrequencyID>
<StatementFrequencyNum xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">1</StatementFrequencyNum>
<StatementLastRun xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">sample string 8</StatementLastRun>
<Surveys xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">
<SurveyDto>
<Date>sample string 1</Date>
<SurveyID>1</SurveyID>
<TotalScore>1</TotalScore>
<UDFLinks xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.UserDefinedFields">
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
</UDFLinks>
<UserDefinedFieldGroupID>1</UserDefinedFieldGroupID>
</SurveyDto>
<SurveyDto>
<Date>sample string 1</Date>
<SurveyID>1</SurveyID>
<TotalScore>1</TotalScore>
<UDFLinks xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.UserDefinedFields">
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
<d4p1:UserDefinedFieldLinkDto>
<d4p1:BranchID>1</d4p1:BranchID>
<d4p1:CUAccountID>1</d4p1:CUAccountID>
<d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
<d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
<d4p1:CustomerID>1</d4p1:CustomerID>
<d4p1:CustomerTypes>1</d4p1:CustomerTypes>
<d4p1:DateValue>sample string 4</d4p1:DateValue>
<d4p1:FieldCurrency>1</d4p1:FieldCurrency>
<d4p1:FieldName>sample string 3</d4p1:FieldName>
<d4p1:InteractionID>1</d4p1:InteractionID>
<d4p1:Mandatory>true</d4p1:Mandatory>
<d4p1:Mask>sample string 2</d4p1:Mask>
<d4p1:Order>1</d4p1:Order>
<d4p1:ProductID>1</d4p1:ProductID>
<d4p1:ReceiptNo>1</d4p1:ReceiptNo>
<d4p1:SurveyID>1</d4p1:SurveyID>
<d4p1:UDFFieldID>1</d4p1:UDFFieldID>
<d4p1:UDFLinkID>1</d4p1:UDFLinkID>
<d4p1:UDFType>64</d4p1:UDFType>
<d4p1:UniqueField>true</d4p1:UniqueField>
<d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
<d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
<d4p1:Value>sample string 1</d4p1:Value>
</d4p1:UserDefinedFieldLinkDto>
</UDFLinks>
<UserDefinedFieldGroupID>1</UserDefinedFieldGroupID>
</SurveyDto>
</Surveys>
<AgreedAmount>1</AgreedAmount>
<BonusInterestRate>1.1</BonusInterestRate>
<DebitCardReference>sample string 5</DebitCardReference>
<ExcludeFromLoanPercentageBlock>true</ExcludeFromLoanPercentageBlock>
<FeeTargetAccountID>1</FeeTargetAccountID>
<FinalValue>1</FinalValue>
<GracePeriodEndDate>sample string 3</GracePeriodEndDate>
<InitialPaymentDate>sample string 4</InitialPaymentDate>
<InterestPayable>1</InterestPayable>
<InterestRate>1.1</InterestRate>
<InterestTargetAccountID>1</InterestTargetAccountID>
<MaturityDate>sample string 1</MaturityDate>
<MoneyLaunderingAnswers>
<MoneyLaunderingAnswerDto>
<Answer>sample string 1</Answer>
<CUAccountID>1</CUAccountID>
<MoneyLaunderingAnswerID>1</MoneyLaunderingAnswerID>
<MoneyLaunderingQuestionID>1</MoneyLaunderingQuestionID>
</MoneyLaunderingAnswerDto>
<MoneyLaunderingAnswerDto>
<Answer>sample string 1</Answer>
<CUAccountID>1</CUAccountID>
<MoneyLaunderingAnswerID>1</MoneyLaunderingAnswerID>
<MoneyLaunderingQuestionID>1</MoneyLaunderingQuestionID>
</MoneyLaunderingAnswerDto>
</MoneyLaunderingAnswers>
<NormalTransactionLimit>1</NormalTransactionLimit>
<OffsetInterestRate>1.1</OffsetInterestRate>
<OverrideTax>true</OverrideTax>
<PaymentAmount>1</PaymentAmount>
<PaymentPeriodID>64</PaymentPeriodID>
<PaymentPeriodNum>1</PaymentPeriodNum>
<RiskFreeAmount>1</RiskFreeAmount>
<RolloverCUAccountID>1</RolloverCUAccountID>
<RolloverInstruction>64</RolloverInstruction>
<RolloverProductID>1</RolloverProductID>
<Schedule xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Accounts.Savings">
<d2p1:SavingsScheduleDto>
<d2p1:Balance>1</d2p1:Balance>
<d2p1:CUSavingID>1</d2p1:CUSavingID>
<d2p1:FeePayment>1</d2p1:FeePayment>
<d2p1:FeePaymentPaid>1</d2p1:FeePaymentPaid>
<d2p1:InterestPayment>1</d2p1:InterestPayment>
<d2p1:InterestPaymentPaid>1</d2p1:InterestPaymentPaid>
<d2p1:PaymentOnlyBalance>1</d2p1:PaymentOnlyBalance>
<d2p1:RepaymentDate>sample string 1</d2p1:RepaymentDate>
<d2p1:SavingsPayment>1</d2p1:SavingsPayment>
<d2p1:SavingsPaymentPaid>1</d2p1:SavingsPaymentPaid>
<d2p1:ScheduleID>1</d2p1:ScheduleID>
<d2p1:TaxPayment>1</d2p1:TaxPayment>
<d2p1:TaxPaymentPaid>1</d2p1:TaxPaymentPaid>
<d2p1:period>1</d2p1:period>
</d2p1:SavingsScheduleDto>
<d2p1:SavingsScheduleDto>
<d2p1:Balance>1</d2p1:Balance>
<d2p1:CUSavingID>1</d2p1:CUSavingID>
<d2p1:FeePayment>1</d2p1:FeePayment>
<d2p1:FeePaymentPaid>1</d2p1:FeePaymentPaid>
<d2p1:InterestPayment>1</d2p1:InterestPayment>
<d2p1:InterestPaymentPaid>1</d2p1:InterestPaymentPaid>
<d2p1:PaymentOnlyBalance>1</d2p1:PaymentOnlyBalance>
<d2p1:RepaymentDate>sample string 1</d2p1:RepaymentDate>
<d2p1:SavingsPayment>1</d2p1:SavingsPayment>
<d2p1:SavingsPaymentPaid>1</d2p1:SavingsPaymentPaid>
<d2p1:ScheduleID>1</d2p1:ScheduleID>
<d2p1:TaxPayment>1</d2p1:TaxPayment>
<d2p1:TaxPaymentPaid>1</d2p1:TaxPaymentPaid>
<d2p1:period>1</d2p1:period>
</d2p1:SavingsScheduleDto>
</Schedule>
<StartDate>sample string 2</StartDate>
<TaxPayable>1</TaxPayable>
<TermPeriodID>64</TermPeriodID>
<TermPeriodNum>1</TermPeriodNum>
<WithdrawalsRequireOverride>true</WithdrawalsRequireOverride>
<m_InterestRateOffset>1.1</m_InterestRateOffset>
</SavingsAccountDto>