--- swagger: "2.0" info: x-ibm-name: LoanServices title: LoanServices version: 1.0.0 description: "" name: "" schemes: - https basePath: /LoanServices consumes: - application/json produces: - application/json securityDefinitions: OAuth-B2B: type: oauth2 description: Access code flow OAuth 2 authorization flow: application scopes: account_data: full account data access Restricted: "" tokenUrl: https://$(api.endpoint.hostname)/$(api.org.name)/$(env.path)/b2b/token x-scopeValidate: tls-profile: omer.abukarat@dbank.co.il security: - OAuth-B2B: - account_data - Restricted x-ibm-configuration: testable: true enforced: true phase: realized paths: /mortgageSimulation: post: summary: http://bunny.dev.local//#/NewEndPoint/LoanServices/CreateMortgageSimulation/220 operationId: loanservices.CreateMortgageSimulation responses: 201: description: OK schema: $ref: '#/definitions/CreateMortgageSimulationResponse' parameters: - name: body in: body schema: $ref: '#/definitions/CreateMortgageSimulationRequest' - $ref: '#/parameters/Accept-Language' description: postmanrequest security: - OAuth-B2B: - Restricted /loans: get: summary: GetLoans operationId: loanservices.GetLoans responses: 200: description: OK schema: $ref: '#/definitions/GetLoansResponse' parameters: - name: accountID in: query required: true description: מזהה חשבון type: string pattern: ^[0-9]{0,2}[1-9]-[0-9]{0,9}[1-9]$ - name: loanState in: query required: true description: מצב הלוואה type: string enum: - All - Active - AllIncludingArchive - name: loanType in: query required: true description: סוג הלוואה type: string enum: - Commercial - Deposit - LoansOrDeposit - LoansWithoutDeposit - Mortgage - $ref: '#/parameters/Accept-Language' security: - OAuth-B2B: - Restricted /v1/mortgageSimulation: post: summary: http://bunny.dev.local//#/NewEndPoint/LoanServices/CreateMortgageSimulationV1/20358 operationId: createmortgagesimulationv1.CreateMortgageSimulationV1 responses: 201: description: OK schema: $ref: '#/definitions/CreateMortgageSimulationV1Response' parameters: - name: body in: body schema: $ref: '#/definitions/CreateMortgageSimulationV1Request' - $ref: '#/parameters/Accept-Language' description: postmanrequest security: - OAuth-B2B: - Restricted /account/{BranchNumber}-{AccountNumber}/loanEligibility: get: summary: http://bunny.dev.local/#/NewEndPoint/LoanServices/GetAccountLoanEligibility/20400 operationId: getaccountloaneligibility.GetAccountLoanEligibility responses: 200: description: OK schema: $ref: '#/definitions/GetAccountLoanEligibilityResponse' parameters: - name: X-Global-Transaction-ID in: header required: false description: מזהה פעילות type: string - name: Authorization in: header required: false description: אימות הרשאות API type: string security: - OAuth-B2B: - account_data parameters: - $ref: '#/parameters/BranchNumber' - $ref: '#/parameters/AccountNumber' - $ref: '#/parameters/Accept' - $ref: '#/parameters/Accept-Language' /account/{BranchNumber}-{AccountNumber}/loansBalances: get: summary: http://bunny.dev.local//#/NewEndPoint/LoanServices/GetAccountLoansBalances/20310 operationId: loanservices.GetAccountLoansBalances responses: 200: description: OK schema: $ref: '#/definitions/GetAccountLoansBalancesResponse' parameters: - $ref: '#/parameters/BranchNumber' - $ref: '#/parameters/AccountNumber' - $ref: '#/parameters/Accept-Language' description: LoanServices-GetAccountLoansBalances security: - OAuth-B2B: - Restricted /account/{BranchNumber}-{AccountNumber}/loans: get: summary: GetAccountLoans operationId: loanservices.GetAccountLoans responses: 200: description: OK schema: $ref: '#/definitions/GetAccountLoansResponse' parameters: - name: loanState in: query required: true description: מצב הלוואה type: string enum: - All - Active - AllIncludingArchive - name: loanType in: query required: true description: סוג הלוואה type: string enum: - Commercial - Deposit - LoansOrDeposit - LoansWithoutDeposit - Mortgage - $ref: '#/parameters/BranchNumber' - $ref: '#/parameters/AccountNumber' - $ref: '#/parameters/Accept-Language' security: - OAuth-B2B: - Restricted /loan/{loanAccountID}: get: summary: GetLoan operationId: loanservices.GetLoan responses: 200: description: OK schema: $ref: '#/definitions/GetLoanResponse' parameters: - name: loanAccountID in: path required: true description: חשבון הלוואה type: string pattern: ^[0-9]{1,3}-[0-9]{1,4}-[0-9]{2}-[0-9]{1,6}$ - $ref: '#/parameters/Accept-Language' security: - OAuth-B2B: - Restricted /loan/{BranchNumber}-{AccountNumber}/arrears/transactions: get: summary: GetLoanArrearsTransactions operationId: loanservices.GetLoanArrearsTransactions responses: 200: description: OK schema: $ref: '#/definitions/GetLoanArrearsTransactionsResponse' parameters: - name: fromDate in: query required: false description: החל מתאריך type: string format: date - name: uptoDate in: query required: false description: עד לתאריך type: string format: date - $ref: '#/parameters/BranchNumber' - $ref: '#/parameters/AccountNumber' - $ref: '#/parameters/Accept-Language' security: - OAuth-B2B: - Restricted tags: [] parameters: BranchNumber: name: BranchNumber required: true in: path type: string pattern: ^[0-9]{1,4}$ description: Opening branch of account. e.g "0143" AccountNumber: name: AccountNumber required: true in: path type: string pattern: ^[0-9]{1,10}$ description: Account number. e.g "0101997851" Accept-Language: name: Accept-Language type: string required: true in: header description: 'קוד שפה תקני לדוגמה: he-IL' Accept: name: Accept type: string required: false in: header Content-Type: name: Content-Type type: string required: false in: header description: "" definitions: error: properties: error: type: array items: type: object properties: httpCode: type: string description: קוד החזר example: "400" httpMessage: type: string description: הודעה example: missing request parameter XXX code: type: string description: קוד שגיאה אפליקטיבית example: CMP_ALTAMIRA_MISSING_REQIRED_FIELDS message: type: string description: הודעה example: חסרים שדות חובה. טרמינל לוגי טרמינל פיזי moreInformation: type: string description: מידע נוסף example: call support warning: type: array items: type: object properties: code: type: string description: קוד החזר example: MC101 message: type: string description: הודעה example: הוחלף יום עסקים... moreInformation: type: string description: מידע נוסף example: יש לעדכן את הלקוח additionalProperties: false required: - error noData: additionalProperties: false CreateMortgageSimulationResponse: properties: data: title: data description: אובייקט אב type: object properties: IRRActualCostPercent: title: IRRActualCostPercent description: אחוז עלות ממשית - IRR type: number loanTracks: type: array items: title: loanTracks description: מסלולי הלוואות type: object properties: highestMonthlyPaymentAmount: title: highestMonthlyPaymentAmount description: 'סכום ההחזר החודשי הגבוה ביותר ' type: number durationInMonths: title: durationInMonths description: תקופת קדם הלוואה (בחודשים) type: number maximum: 999 totalPaymentAmountExcludingLinkage: title: totalPaymentAmountExcludingLinkage description: סך כל הסכום הצפוי החזוי שישולם עד לסוף תקופת ההלוואה לא כולל הצמדות type: number totalInterestAmount: title: totalInterestAmount description: סה"כ ריבית לתשלום type: number loanPeriods: type: array items: title: loanPeriods description: תקופות type: object properties: periodNumber: title: periodNumber description: מספר תקופה type: number maximum: 5 firstMonthPayment: title: firstMonthPayment description: סכום ההחזר החודשי עבור החודש הראשון type: number required: - periodNumber - firstMonthPayment maxItems: 5 preLoanID: title: preLoanID description: מספר קדם הלוואה (הלוואת שמיים) type: number maximum: 10000000000 loanTrackID: title: loanTrackID description: מזהה מסלול הלוואה type: number maximum: 10000000000 preLoanAmount: title: preLoanAmount description: סכום קדם הלוואה type: number actualCostPercent: title: actualCostPercent description: אחוז עלות ממשית type: number totalPaymentAmount: title: totalPaymentAmount description: סך כל הסכום הצפוי החזוי שישולם עד לסוף תקופת ההלוואה type: number adjustedInterestPercent: title: adjustedInterestPercent description: אחוז ריבית מתואמת type: number totalFeesAmount: title: totalFeesAmount description: סך עמלות type: number required: - preLoanID - loanTrackID - preLoanAmount - durationInMonths - adjustedInterestPercent - highestMonthlyPaymentAmount - totalPaymentAmount - totalPaymentAmountExcludingLinkage - totalInterestAmount - totalFeesAmount - actualCostPercent - loanPeriods currentIndex: title: currentIndex description: מדד נוכחי שבו חושב שווי ההלוואה type: number highestMonthlyPaymentTotalAmount: title: highestMonthlyPaymentTotalAmount description: 'סך התשלומים החודשים הגבוה ביותר ' type: number required: - IRRActualCostPercent - loanTracks - currentIndex - highestMonthlyPaymentTotalAmount CreateMortgageSimulationRequest: properties: loanTracks: type: array items: title: loanTracks description: מסלולי הלוואות type: object properties: durationInMonths: title: durationInMonths description: תקופת קדם הלוואה (בחודשים) type: number maximum: 999 loanPeriods: type: array items: title: loanPeriods description: תקופות type: object properties: periodAmount: title: periodAmount description: סכום type: number periodDuration: title: periodDuration description: משך תקופה type: number periodNumber: title: periodNumber description: מספר תקופה type: number maximum: 5 interestPercent: title: interestPercent description: אחוז ריבית type: number interestIntervalPercent: title: interestIntervalPercent description: אחוז מרווח ריבית type: number required: - periodNumber - periodDuration - interestPercent - interestIntervalPercent - periodAmount maxItems: 5 preLoanID: title: preLoanID description: מספר קדם הלוואה (הלוואת שמיים) type: number maximum: 10000000000 interestIntervalPercent: title: interestIntervalPercent description: אחוז מרווח ריבית type: number loanTrackID: title: loanTrackID description: מזהה מסלול הלוואה type: number maximum: 10000000000 preLoanAmount: title: preLoanAmount description: סכום קדם הלוואה type: number nominalInterestPercent: title: nominalInterestPercent description: אחוז ריבית נומינלית type: number valueDate: title: valueDate description: תאריך ערך type: string format: date baseInterestPercent: title: baseInterestPercent description: אחוז ריבית בסיס type: number loanManagementFeeAmount: title: loanManagementFeeAmount description: עמלת דמי ניהול הלוואה type: number documentsFeeAmount: title: documentsFeeAmount description: עמלת מסמכים type: number paymentDay: title: paymentDay description: יום תשלום type: string enum: - FifteenthDay - TenthDay - FirstDay loanAccountID: title: loanAccountID description: חשבון הלוואה type: string pattern: ^[0-9]{1,3}-[0-9]{1,4}-[0-9]{2}-[0-9]{1,6}$ example: 010-0602-00-521904 required: - loanTrackID - preLoanAmount - durationInMonths - baseInterestPercent - interestIntervalPercent - nominalInterestPercent - paymentDay - loanPeriods - valueDate required: - loanTracks GetLoanResponse: properties: data: title: data description: אובייקט אב type: object properties: handlingBranch: title: handlingBranch description: סניף מנהל החשבון type: string loanSpecification: title: loanSpecification description: 'אפיון הלוואה ספציפי ' type: string enum: - EveryPurpose - BankEligibility - BusinessLoanDeposits - NoDeposit - AbsoluteGrant - Housing - SpecificInterestPeriod - BudgetEligibility - ConditionalGrant - NoSpecificCharacterization - CapitalNotesDeposits - PartialStructuredDeposit - KibbutzDepositsLoans - StocksStructuredDeposit - OldLayout - Business - NewLayout debtStartingDate: title: debtStartingDate description: 'תאריך תחילת עומק פיגור ' type: string format: date accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{1,4}-[0-9]{1,10}$ example: 140-334543 arrearsBalance: title: arrearsBalance description: יתרת פיגורים type: number paymentDueDay: title: paymentDueDay description: יום פירעון קרן בחודש - 1..31 type: integer maximum: 2 arrearsAccountCurrencyCode: title: arrearsAccountCurrencyCode description: קוד מטבע חשבון תמורה type: string example: USD nominalFundBalance: title: nominalFundBalance description: יתרת קרן נומינלית type: number loanStatus: title: loanStatus description: סטטוס הלוואה type: string enum: - Active - NotApproved - RepaymentAtEndingDate - RolledUp - EarlyRepayment - Transferred - Canceled - Deleted loanPurpose: title: loanPurpose description: 'מטרת הלוואה ' type: string enum: - RegularLoan - AllPurposeMortgage - HousingLoan - Business foreignCurrencyLoan: title: foreignCurrencyLoan description: הלוואת מט"ח type: object properties: lastInterestPaymentRate: title: lastInterestPaymentRate description: שער של מט"ח לתאריך תשלום אחרון שוטף ריבית type: number originRate: title: originRate description: 'שער יסודי ' type: number currentRate: title: currentRate description: 'שער נוכחי ' type: number lastFundPaymentRate: title: lastFundPaymentRate description: שער של מט"ח לתאריך תשלום אחרון שוטף קרן type: number loanRegistrationChannel: title: loanRegistrationChannel description: הערוץ שבו הוקמה ההלוואה type: string enum: - TeleBank - Unknown - Feedback - Branch - Internet - InteractiveVoiceResponse loanSpecificationCodeDescription: title: loanSpecificationCodeDescription description: "תיאור אפיון הלוואה ספציפי\t" type: string monthlyPaymentAmount: title: monthlyPaymentAmount description: סכום תשלום חודשי type: number EMILoanFlagDescription: title: EMILoanFlagDescription description: "תיאור סמן הלוואת EMI\t" type: string customerLoanRelationType: title: customerLoanRelationType description: קשר הלקוח להלוואה type: string enum: - AccountParticipant - Owner - Guarantor - None nextInterestChangeDate: title: nextInterestChangeDate description: 'תאריך שינוי ריבית הבא ' type: string format: date loanPurposeDescription: title: loanPurposeDescription description: "תיאור מטרת הלוואה\t" type: string example: הלוואה רגילה earlyPaymentsCount: title: earlyPaymentsCount description: מספר פרעונות מוקדמים שבוצעו type: integer lastInterestPaymentAmount: title: lastInterestPaymentAmount description: סכום פירעון ריבית אחרון type: number arrearsInterestPercent: title: arrearsInterestPercent description: אחוז ריבית פיגורים type: number maximum: 999.999900 earlyPaymentWithoutNotificationFee: title: earlyPaymentWithoutNotificationFee description: עמלת פירעון מוקדם אי הודעה type: number linkedInterestAmount: title: linkedInterestAmount description: שווי הצמדת ריבית type: number linkageTypeDescription: title: linkageTypeDescription description: "תיאור קוד הצמדה\t" type: string endingDate: title: endingDate description: 'תאריך סיום ' type: string format: date loanAccountTypeDescription: title: loanAccountTypeDescription description: "תיאור סוג חשבון ההלוואה - האם מדובר בהלוואה או פקדון\t" type: string example: פיקדון handlingBranchName: title: handlingBranchName description: שם סניף מנהל type: string returnInterestWithoutFeesPercent: title: returnInterestWithoutFeesPercent description: אחוז ריבית כוללת חזויה ללא עמלות(IRR) type: number loanAccountType: title: loanAccountType description: 'סוג חשבון ההלוואה: הלוואה או פקדון' type: string enum: - Deposit - Loan monthsDuration: title: monthsDuration description: תקופת הלוואה בחודשים type: integer nextFundPaymentDate: title: nextFundPaymentDate description: 'תאריך תשלום קרן הבא ' type: string format: date lastLinkedInterestPaymentAmount: title: lastLinkedInterestPaymentAmount description: סכום פירעון הצמדת רבית אחרון type: number returnInterestIncludeFeesPercent: title: returnInterestIncludeFeesPercent description: אחוז ריבית כוללת חזויה עם עמלות (IRR) type: number capitalizedInterestAveragePercent: title: capitalizedInterestAveragePercent description: אחוז ריבית ממוצעת להיוון type: number linkageType: title: linkageType description: קוד הצמדה type: string enum: - IndexLinked - NotLinked - ForeignExchangeMarketLinked interestChangeFrequencyType: title: interestChangeFrequencyType description: סוג תדירות שינוי ריבית type: string enum: - "No" - Daily - Monthly fundPaymentType: title: fundPaymentType description: אופן תשלום קרן type: string enum: - FixedFund - Bullet - Spitzer debtDurationCalculationTypeDescription: title: debtDurationCalculationTypeDescription description: "תיאור שיטת חישוב עומק פיגור\t" type: string example: לפי עומק פיגור bulletGraceFlag: title: bulletGraceFlag description: סמן המציין האם ההלוואה היא הלוואת גישור (bullet) או עם דחיית תשלומים ( grace ) type: string enum: - FundInterestWithoutGrace - FundByGrace - FundInterestByBullet - FundInterestByGrace - FundByBulletInterestByPayments interestPaymentMethod: title: interestPaymentMethod description: אופן תשלום ריבית type: string enum: - LoanTrack - ByInterestRate - InterestAtEnd - InterestInAdvance - LoanPrincipal - NoInterest - Spitzer nextInterestPaymentDueDate: title: nextInterestPaymentDueDate description: 'תאריך פירעון ריבית הבא ' type: string format: date interestGapEarlyPaymentFee: title: interestGapEarlyPaymentFee description: עמלת פירעון מוקדם הפרש ריבית type: number indexedLoan: title: indexedLoan description: 'הלוואה צמודה ' type: object properties: indexUpdateDate: title: indexUpdateDate description: תאריך עדכון מדד אחרון type: string format: date originRate: title: originRate description: 'שער יסודי ' type: number originIndex: title: originIndex description: מדד יסודי type: number currentRate: title: currentRate description: 'שער נוכחי ' type: number currentIndex: title: currentIndex description: מדד נוכחי שבו חושב שווי ההלוואה type: number rateUpdateDate: title: rateUpdateDate description: תאריך עדכון שער אחרון type: string format: date loanTypeDescription: title: loanTypeDescription description: "תיאור סוג הלוואה\t" type: string example: גרירה mainLoanModelDescription: title: mainLoanModelDescription description: תיאור דגם ראשי (תיאור סוג ההלוואה) type: string example: הלוואה לא צמודה בריבית קבועה fundPaymentTypeDescription: title: fundPaymentTypeDescription description: "תיאור אופן תשלום קרן\t" type: string lastInterestPaymentDueDate: title: lastInterestPaymentDueDate description: 'תאריך פירעון ריבית אחרון ' type: string format: date interestAmount: title: interestAmount description: שווי סכום ריבית type: number arrearsInterestAmount: title: arrearsInterestAmount description: שווי ריבית פיגורים type: number debtDurationMonths: title: debtDurationMonths description: עומק פיגור בחודשים type: integer maximum: 9999 entitlementLoanTypeDescription: title: entitlementLoanTypeDescription description: "תיאור סמן הלוואת זכאות\t" type: string example: זכאות linkageCurrencyCode: title: linkageCurrencyCode description: קוד מטבע הצמדה type: string example: USD indexGapEarlyPaymentFee: title: indexGapEarlyPaymentFee description: עמלת פירעון מוקדם הפרש מדד type: number payingAccount: title: payingAccount description: חשבון תשלום type: object properties: israeliBankCode: title: israeliBankCode description: קוד בנק ישראלי type: string example: "11" accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{1,4}-[0-9]{1,10}$ example: 140-334543 legacyAccountID: title: legacyAccountID description: חשבון מלא של מערכת ישנה (מוסבות} type: string example: 145-0214-00-345391 isExternalAccount: title: isExternalAccount description: האם חשבון בבנק אחר בארץ (שאינו דיסקונט/מרכנתיל). type: boolean currencyCode: title: currencyCode description: קוד מטבע type: string example: USD required: - isExternalAccount - israeliBankCode - accountID - legacyAccountID series: title: series description: סדרה type: object properties: firstSeriesExecutionDate: title: firstSeriesExecutionDate description: 'תאריך ראשון לביצוע הסדרה ' type: string format: date isSeriesLoan: title: isSeriesLoan description: הלוואה בסדרת תשלומים type: boolean required: - isSeriesLoan lastFundPaymentDate: title: lastFundPaymentDate description: תאריך פרעון קרן אחרון type: string format: date linkedFundBalance: title: linkedFundBalance description: שווי הצמדת יתרה (שווי הצמדת קרן) type: number interestChangeMethodDescription: title: interestChangeMethodDescription description: "תיאור אופן שינוי ריבית\t" type: string nextPaymentAmount: title: nextPaymentAmount description: סכום פירעון קרן הבא type: number mortgageLoanType: title: mortgageLoanType description: סוג הלוואה type: string enum: - Extension - HousingLoan - Dragging - Reorganization - DeploymentLayout - DraggingAddition - FixedInterestRate - Recycling - None interestTypeDescription: title: interestTypeDescription description: "תיאור סוג ריבית - אופי ריבית\t" type: string paymentDueDayType: title: paymentDueDayType description: סוג יום תשלום type: string enum: - EndOfQuarter - PaymentDay - EndOfYear - EndOfMonth - EndOfHalfYear interestChangeMethod: title: interestChangeMethod description: אופן שינוי ריבית type: string enum: - Interest - InterestChange - LoanFund - DailyChange - Reports remainingMonthsDuration: title: remainingMonthsDuration description: תקופת ההלוואה שנותרה בחודשים type: integer maximum: 9999 baseInterestType: title: baseInterestType description: טבלת בסיס ריבית type: string enum: - LinkedInterestYields - UnindexedInterestRatesBondYields - WithoutBaseInterest - BankOfIsrael - Prime - InterestUnindexedLoans - InterestIndexLinkedInterestRates - Livor earlyPaymentFee: title: earlyPaymentFee description: עמלת פירעון מוקדם תפעולית type: number interestChangeFrequency: title: interestChangeFrequency description: תדירות שינוי ריבית type: integer loanStatusDescription: title: loanStatusDescription description: "תיאור סטטוס הלוואה\t" type: string example: נפרעה במועדה EMILoanFlag: title: EMILoanFlag description: סמן הלוואת EMI type: string enum: - EMIInsuredDeal - EMIInsured - WithoutEMI loanRegistrationValueDate: title: loanRegistrationValueDate description: 'תאריך ערך הקמה ' type: string format: date interestPercent: title: interestPercent description: אחוז ריבית type: number interestGapPercent: title: interestGapPercent description: אחוז ריבית מרווח type: number standingOrderPayingAccount: title: standingOrderPayingAccount description: חשבון הוראת קבע לתשלום type: object properties: israeliBankCode: title: israeliBankCode description: קוד בנק ישראלי type: string example: "11" accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{1,4}-[0-9]{1,10}$ example: 140-334543 required: - israeliBankCode - accountID baseInterestPercent: title: baseInterestPercent description: אחוז ריבית בסיס type: number entitlementLoanType: title: entitlementLoanType description: סמן הלוואת זכאות type: string enum: - ComplementaryLoan - EntitlementLoan - NotEntitlementLoan originLoanAmount: title: originLoanAmount description: סכום הקמה מקורי type: number customerID: title: customerID description: מזהה לקוח type: string bulletGraceFlagDescription: title: bulletGraceFlagDescription description: תיאור סוג הלוואת הבלון/ דחיית תשלומים type: string example: תשלום ק/ר ללא גרייס secondaryLoanModelDescription: title: secondaryLoanModelDescription description: תיאור דגם משני(תיאור מטרת הלוואה או אוכלוסייה) type: string example: הלוואה ללקוחות פרטיים interestType: title: interestType description: סוג ריבית - אופי ריבית type: string enum: - Variable - Fixed firstPaymentDate: title: firstPaymentDate description: 'תאריך תשלום קרן ראשון ' type: string format: date arrearsAccountID: title: arrearsAccountID description: חשבון תמורה - פיגורים(מהווה תמורה להלוואה, במבנה יוניסיס) type: string example: 010-0602-00-521904 originPaymentsQuantity: title: originPaymentsQuantity description: מספר תשלומים מקורי type: integer adjustedInterestPercent: title: adjustedInterestPercent description: אחוז ריבית מתואמת type: number nextLinkedInterestPaymentAmount: title: nextLinkedInterestPaymentAmount description: סכום פירעון ריבית הצמדה הבא type: number customerLoanRelationTypeDescription: title: customerLoanRelationTypeDescription description: תיאור קוד קשר להלוואה type: string example: שותף loanRegistrationChannelDescription: title: loanRegistrationChannelDescription description: "תיאור הערוץ שבו הוקמה ההלוואה\t" type: string interestPaymentMethodDescription: title: interestPaymentMethodDescription description: "תיאור אופן תשלום ריבית\t" type: string lastPaymentAmount: title: lastPaymentAmount description: סכום פירעון קרן אחרון type: number loanRemainingPeriodInMonths: title: loanRemainingPeriodInMonths description: יתרת תקופת הלוואה (יתרה בחודשים) type: integer accountOwnerName: title: accountOwnerName description: 'שם בעל חשבון ' type: string openingDate: title: openingDate description: 'תאריך פתיחה ' type: string format: date firstInterestPaymentDueDate: title: firstInterestPaymentDueDate description: 'תאריך תשלום ריבית ראשון ' type: string format: date accountCurrencyCode: title: accountCurrencyCode description: קוד מטבע חשבון עוש type: string example: USD secondaryLoanModelCode: title: secondaryLoanModelCode description: קוד דגם משני (מטרת הלוואה או אוכלוסיה) type: string example: "0250" baseInterestTypeDescription: title: baseInterestTypeDescription description: "תיאור טבלת בסיס ריבית\t" type: string lastLinkedPaymentAmount: title: lastLinkedPaymentAmount description: סכום הצמדת קרן אחרון type: number interestChangeFrequencyTypeDescription: title: interestChangeFrequencyTypeDescription description: "תיאור סוג תדירות שינוי ריבית\t" type: string nextLinkedPaymentAmount: title: nextLinkedPaymentAmount description: סכום פירעון הצמדת קרן הבא type: number legacyAccountID: title: legacyAccountID description: חשבון מלא של מערכת ישנה (מוסבות} type: string example: 145-0214-00-345391 mainLoanModelCode: title: mainLoanModelCode description: קוד דגם ראשי (קוד עבור סוג ההלוואה) type: string example: "0250" nextInterestPaymentAmount: title: nextInterestPaymentAmount description: סכום פירעון ריבית הבא type: number debtDurationCalculationType: title: debtDurationCalculationType description: שיטת חישוב עומק פיגור type: string enum: - DebtByDate - WithoutDebt - DebtByAmount loanAccountCurrencyCode: title: loanAccountCurrencyCode description: קוד מטבע חשבון הלוואה type: string example: USD remainingPaymentsQuantity: title: remainingPaymentsQuantity description: מספר תשלומים שנותרו type: integer required: - mainLoanModelCode - mainLoanModelDescription - secondaryLoanModelDescription - openingDate - endingDate - loanStatus - originLoanAmount - nominalFundBalance - linkedFundBalance - interestAmount - linkedInterestAmount - arrearsBalance - arrearsInterestAmount - arrearsInterestPercent - linkageType - linkageCurrencyCode - interestType - interestPercent - baseInterestPercent - interestGapPercent - monthsDuration - remainingMonthsDuration - originPaymentsQuantity - remainingPaymentsQuantity - fundPaymentType - lastPaymentAmount - lastLinkedPaymentAmount - lastInterestPaymentAmount - lastLinkedInterestPaymentAmount - nextPaymentAmount - nextLinkedPaymentAmount - nextInterestPaymentAmount - nextLinkedInterestPaymentAmount - capitalizedInterestAveragePercent - firstPaymentDate - monthlyPaymentAmount - loanSpecification - loanPurpose - lastInterestPaymentDueDate - firstInterestPaymentDueDate - loanRegistrationValueDate - loanRemainingPeriodInMonths - interestPaymentMethod - loanAccountType - earlyPaymentsCount - loanStatusDescription - bulletGraceFlagDescription - interestChangeMethodDescription - linkageTypeDescription - interestTypeDescription - fundPaymentTypeDescription - loanAccountTypeDescription - loanTypeDescription - loanSpecificationCodeDescription - loanAccountCurrencyCode - handlingBranch - handlingBranchName GetLoansResponse: properties: data: title: data description: אובייקט אב type: object properties: loans: type: array items: title: loans description: הלוואות type: object properties: handlingBranch: title: handlingBranch description: סניף מנהל החשבון type: string loanSpecification: title: loanSpecification description: 'אפיון הלוואה ספציפי ' type: string enum: - EveryPurpose - BankEligibility - BusinessLoanDeposits - NoDeposit - AbsoluteGrant - Housing - SpecificInterestPeriod - BudgetEligibility - ConditionalGrant - NoSpecificCharacterization - CapitalNotesDeposits - PartialStructuredDeposit - KibbutzDepositsLoans - StocksStructuredDeposit - OldLayout - Business - NewLayout debtStartingDate: title: debtStartingDate description: 'תאריך תחילת עומק פיגור ' type: string format: date arrearsBalance: title: arrearsBalance description: יתרת פיגורים type: number paymentDueDay: title: paymentDueDay description: יום פירעון קרן בחודש - 1..31 type: integer arrearsAccountCurrencyCode: title: arrearsAccountCurrencyCode description: קוד מטבע חשבון תמורה type: string example: USD nominalFundBalance: title: nominalFundBalance description: יתרת קרן נומינלית type: number loanStatus: title: loanStatus description: סטטוס הלוואה type: string enum: - Active - NotApproved - RepaymentAtEndingDate - RolledUp - EarlyRepayment - Transferred - Canceled - Deleted loanPurpose: title: loanPurpose description: 'מטרת הלוואה ' type: string enum: - RegularLoan - AllPurposeMortgage - HousingLoan - Business loanRegistrationChannel: title: loanRegistrationChannel description: הערוץ שבו הוקמה ההלוואה type: string enum: - TeleBank - Unknown - Feedback - Branch - Internet - InteractiveVoiceResponse loanSpecificationCodeDescription: title: loanSpecificationCodeDescription description: "תיאור אפיון הלוואה ספציפי\t" type: string foreignCurrencyLoan: title: foreignCurrencyLoan description: הלוואת מט"ח type: object properties: lastInterestPaymentRate: title: lastInterestPaymentRate description: שער של מט"ח לתאריך תשלום אחרון שוטף ריבית type: number originRate: title: originRate description: 'שער יסודי ' type: number currentRate: title: currentRate description: 'שער נוכחי ' type: number lastFundPaymentRate: title: lastFundPaymentRate description: שער של מט"ח לתאריך תשלום אחרון שוטף קרן type: number monthlyPaymentAmount: title: monthlyPaymentAmount description: סכום תשלום חודשי type: number EMILoanFlagDescription: title: EMILoanFlagDescription description: "תיאור סמן הלוואת EMI\t" type: string customerLoanRelationType: title: customerLoanRelationType description: קשר הלקוח להלוואה type: string enum: - AccountParticipant - Owner - Guarantor - None nextInterestChangeDate: title: nextInterestChangeDate description: 'תאריך שינוי ריבית הבא ' type: string format: date loanPurposeDescription: title: loanPurposeDescription description: "תיאור מטרת הלוואה\t" type: string example: הלוואה רגילה earlyPaymentsCount: title: earlyPaymentsCount description: מספר פרעונות מוקדמים שבוצעו type: integer lastInterestPaymentAmount: title: lastInterestPaymentAmount description: סכום פירעון ריבית אחרון type: number arrearsInterestPercent: title: arrearsInterestPercent description: אחוז ריבית פיגורים type: number earlyPaymentWithoutNotificationFee: title: earlyPaymentWithoutNotificationFee description: עמלת פירעון מוקדם אי הודעה type: number linkedInterestAmount: title: linkedInterestAmount description: שווי הצמדת ריבית type: number linkageTypeDescription: title: linkageTypeDescription description: "תיאור קוד הצמדה\t" type: string endingDate: title: endingDate description: 'תאריך סיום ' type: string format: date loanAccountTypeDescription: title: loanAccountTypeDescription description: "תיאור סוג חשבון ההלוואה - האם מדובר בהלוואה או פקדון\t" type: string example: פיקדון handlingBranchName: title: handlingBranchName description: שם סניף מנהל type: string returnInterestWithoutFeesPercent: title: returnInterestWithoutFeesPercent description: אחוז ריבית כוללת חזויה ללא עמלות(IRR) type: number loanAccountType: title: loanAccountType description: 'סוג חשבון ההלוואה: הלוואה או פקדון' type: string enum: - Deposit - Loan monthsDuration: title: monthsDuration description: תקופת הלוואה בחודשים type: integer nextFundPaymentDate: title: nextFundPaymentDate description: 'תאריך תשלום קרן הבא ' type: string format: date lastLinkedInterestPaymentAmount: title: lastLinkedInterestPaymentAmount description: סכום פירעון הצמדת רבית אחרון type: number returnInterestIncludeFeesPercent: title: returnInterestIncludeFeesPercent description: אחוז ריבית כוללת חזויה עם עמלות (IRR) type: number capitalizedInterestAveragePercent: title: capitalizedInterestAveragePercent description: אחוז ריבית ממוצעת להיוון type: number linkageType: title: linkageType description: קוד הצמדה type: string enum: - IndexLinked - NotLinked - ForeignExchangeMarketLinked interestChangeFrequencyType: title: interestChangeFrequencyType description: סוג תדירות שינוי ריבית type: string enum: - "No" - Daily - Monthly fundPaymentType: title: fundPaymentType description: אופן תשלום קרן type: string enum: - FixedFund - Bullet - Spitzer debtDurationCalculationTypeDescription: title: debtDurationCalculationTypeDescription description: "תיאור שיטת חישוב עומק פיגור\t" type: string example: לפי עומק פיגור bulletGraceFlag: title: bulletGraceFlag description: סמן המציין האם ההלוואה היא הלוואת גישור (bullet) או עם דחיית תשלומים ( grace ) type: string enum: - FundInterestWithoutGrace - FundByGrace - FundInterestByBullet - FundInterestByGrace - FundByBulletInterestByPayments interestPaymentMethod: title: interestPaymentMethod description: אופן תשלום ריבית type: string enum: - LoanTrack - ByInterestRate - InterestAtEnd - InterestInAdvance - LoanPrincipal - NoInterest - Spitzer nextInterestPaymentDueDate: title: nextInterestPaymentDueDate description: 'תאריך פירעון ריבית הבא ' type: string format: date interestGapEarlyPaymentFee: title: interestGapEarlyPaymentFee description: עמלת פירעון מוקדם הפרש ריבית type: number indexedLoan: title: indexedLoan description: 'הלוואה צמודה ' type: object properties: indexUpdateDate: title: indexUpdateDate description: תאריך עדכון מדד אחרון type: string format: date originRate: title: originRate description: 'שער יסודי ' type: number originIndex: title: originIndex description: מדד יסודי type: number currentRate: title: currentRate description: 'שער נוכחי ' type: number currentIndex: title: currentIndex description: מדד נוכחי שבו חושב שווי ההלוואה type: number rateUpdateDate: title: rateUpdateDate description: תאריך עדכון שער אחרון type: string format: date loanTypeDescription: title: loanTypeDescription description: "תיאור סוג הלוואה\t" type: string example: גרירה mainLoanModelDescription: title: mainLoanModelDescription description: תיאור דגם ראשי (תיאור סוג ההלוואה) type: string example: הלוואה לא צמודה בריבית קבועה fundPaymentTypeDescription: title: fundPaymentTypeDescription description: "תיאור אופן תשלום קרן\t" type: string lastInterestPaymentDueDate: title: lastInterestPaymentDueDate description: 'תאריך פירעון ריבית אחרון ' type: string format: date interestAmount: title: interestAmount description: שווי סכום ריבית type: number arrearsInterestAmount: title: arrearsInterestAmount description: שווי ריבית פיגורים type: number debtDurationMonths: title: debtDurationMonths description: עומק פיגור בחודשים type: integer entitlementLoanTypeDescription: title: entitlementLoanTypeDescription description: "תיאור סמן הלוואת זכאות\t" type: string example: זכאות linkageCurrencyCode: title: linkageCurrencyCode description: קוד מטבע הצמדה type: string example: USD indexGapEarlyPaymentFee: title: indexGapEarlyPaymentFee description: עמלת פירעון מוקדם הפרש מדד type: number payingAccount: title: payingAccount description: חשבון תשלום type: object properties: israeliBankCode: title: israeliBankCode description: קוד בנק ישראלי type: string example: "11" accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{0,2}[1-9]-[0-9]{0,9}[1-9]$ example: 140-334543 legacyAccountID: title: legacyAccountID description: חשבון מלא של מערכת ישנה (מוסבות} type: string example: 10-0602-00-521904 isExternalAccount: title: isExternalAccount description: האם חשבון בבנק אחר בארץ (שאינו דיסקונט/מרכנתיל). type: boolean currencyCode: title: currencyCode description: קוד מטבע type: string example: USD required: - isExternalAccount - israeliBankCode - accountID - legacyAccountID series: title: series description: סדרה type: object properties: remainingFundPaymentsCount: title: remainingFundPaymentsCount description: מספר סדרות קרן שנותרו type: integer firstSeriesExecutionDate: title: firstSeriesExecutionDate description: 'תאריך ראשון לביצוע הסדרה ' type: string format: date isSeriesLoan: title: isSeriesLoan description: הלוואה בסדרת תשלומים type: boolean required: - isSeriesLoan lastFundPaymentDate: title: lastFundPaymentDate description: תאריך פרעון קרן אחרון type: string format: date linkedFundBalance: title: linkedFundBalance description: שווי הצמדת יתרה (שווי הצמדת קרן) type: number interestChangeMethodDescription: title: interestChangeMethodDescription description: "תיאור אופן שינוי ריבית\t" type: string nextPaymentAmount: title: nextPaymentAmount description: סכום פירעון קרן הבא type: number mortgageLoanType: title: mortgageLoanType description: סוג הלוואה type: string enum: - Extension - HousingLoan - Dragging - Reorganization - DeploymentLayout - DraggingAddition - FixedInterestRate - Recycling - None interestTypeDescription: title: interestTypeDescription description: "תיאור סוג ריבית - אופי ריבית\t" type: string paymentDueDayType: title: paymentDueDayType description: סוג יום תשלום type: string enum: - EndOfQuarter - PaymentDay - EndOfYear - EndOfMonth - EndOfHalfYear interestChangeMethod: title: interestChangeMethod description: אופן שינוי ריבית type: string enum: - Interest - InterestChange - LoanFund - DailyChange - Reports remainingMonthsDuration: title: remainingMonthsDuration description: תקופת ההלוואה שנותרה בחודשים type: integer baseInterestType: title: baseInterestType description: טבלת בסיס ריבית type: string enum: - LinkedInterestYields - UnindexedInterestRatesBondYields - WithoutBaseInterest - BankOfIsrael - Prime - InterestUnindexedLoans - InterestIndexLinkedInterestRates - Livor earlyPaymentFee: title: earlyPaymentFee description: עמלת פירעון מוקדם תפעולית type: number interestChangeFrequency: title: interestChangeFrequency description: תדירות שינוי ריבית type: integer loanStatusDescription: title: loanStatusDescription description: "תיאור סטטוס הלוואה\t" type: string example: נפרעה במועדה EMILoanFlag: title: EMILoanFlag description: סמן הלוואת EMI type: string enum: - EMIInsuredDeal - EMIInsured - WithoutEMI loanRegistrationValueDate: title: loanRegistrationValueDate description: 'תאריך ערך הקמה ' type: string format: date interestPercent: title: interestPercent description: אחוז ריבית type: number interestGapPercent: title: interestGapPercent description: אחוז ריבית מרווח type: number standingOrderPayingAccount: title: standingOrderPayingAccount description: חשבון הוראת קבע לתשלום type: object properties: israeliBankCode: title: israeliBankCode description: קוד בנק ישראלי type: string example: "11" accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{0,2}[1-9]-[0-9]{0,9}[1-9]$ example: 140-334543 required: - israeliBankCode - accountID baseInterestPercent: title: baseInterestPercent description: אחוז ריבית בסיס type: number entitlementLoanType: title: entitlementLoanType description: סמן הלוואת זכאות type: string enum: - ComplementaryLoan - EntitlementLoan - NotEntitlementLoan originLoanAmount: title: originLoanAmount description: סכום הקמה מקורי type: number customerID: title: customerID description: מזהה לקוח type: string bulletGraceFlagDescription: title: bulletGraceFlagDescription description: תיאור סוג הלוואת הבלון/ דחיית תשלומים type: string example: תשלום ק/ר ללא גרייס secondaryLoanModelDescription: title: secondaryLoanModelDescription description: תיאור דגם משני(תיאור מטרת הלוואה או אוכלוסייה) type: string example: הלוואה ללקוחות פרטיים interestType: title: interestType description: סוג ריבית - אופי ריבית type: string enum: - Variable - Fixed firstPaymentDate: title: firstPaymentDate description: 'תאריך תשלום קרן ראשון ' type: string format: date arrearsAccountID: title: arrearsAccountID description: חשבון תמורה - פיגורים(מהווה תמורה להלוואה, במבנה יוניסיס) type: string example: 010-0602-00-521904 originPaymentsQuantity: title: originPaymentsQuantity description: מספר תשלומים מקורי type: integer adjustedInterestPercent: title: adjustedInterestPercent description: אחוז ריבית מתואמת type: number nextLinkedInterestPaymentAmount: title: nextLinkedInterestPaymentAmount description: סכום פירעון ריבית הצמדה הבא type: number customerLoanRelationTypeDescription: title: customerLoanRelationTypeDescription description: תיאור קוד קשר להלוואה type: string example: שותף loanRegistrationChannelDescription: title: loanRegistrationChannelDescription description: "תיאור הערוץ שבו הוקמה ההלוואה\t" type: string interestPaymentMethodDescription: title: interestPaymentMethodDescription description: "תיאור אופן תשלום ריבית\t" type: string lastPaymentAmount: title: lastPaymentAmount description: סכום פירעון קרן אחרון type: number loanRemainingPeriodInMonths: title: loanRemainingPeriodInMonths description: יתרת תקופת הלוואה (יתרה בחודשים) type: integer accountOwnerName: title: accountOwnerName description: 'שם בעל חשבון ' type: string openingDate: title: openingDate description: 'תאריך פתיחה ' type: string format: date firstInterestPaymentDueDate: title: firstInterestPaymentDueDate description: 'תאריך תשלום ריבית ראשון ' type: string format: date accountCurrencyCode: title: accountCurrencyCode description: קוד מטבע חשבון עוש type: string example: USD secondaryLoanModelCode: title: secondaryLoanModelCode description: קוד דגם משני (מטרת הלוואה או אוכלוסיה) type: string example: "0250" baseInterestTypeDescription: title: baseInterestTypeDescription description: "תיאור טבלת בסיס ריבית\t" type: string lastLinkedPaymentAmount: title: lastLinkedPaymentAmount description: סכום הצמדת קרן אחרון type: number interestChangeFrequencyTypeDescription: title: interestChangeFrequencyTypeDescription description: "תיאור סוג תדירות שינוי ריבית\t" type: string nextLinkedPaymentAmount: title: nextLinkedPaymentAmount description: סכום פירעון הצמדת קרן הבא type: number legacyAccountID: title: legacyAccountID description: חשבון מלא של מערכת ישנה (מוסבות} type: string example: 10-0602-00-521904 mainLoanModelCode: title: mainLoanModelCode description: קוד דגם ראשי (קוד עבור סוג ההלוואה) type: string example: "0250" nextInterestPaymentAmount: title: nextInterestPaymentAmount description: סכום פירעון ריבית הבא type: number debtDurationCalculationType: title: debtDurationCalculationType description: שיטת חישוב עומק פיגור type: string enum: - DebtByDate - WithoutDebt - DebtByAmount loanAccountID: title: loanAccountID description: חשבון הלוואה type: string example: 010-0602-00-521904 loanAccountCurrencyCode: title: loanAccountCurrencyCode description: קוד מטבע חשבון הלוואה type: string example: USD remainingPaymentsQuantity: title: remainingPaymentsQuantity description: מספר תשלומים שנותרו type: integer required: - mainLoanModelCode - mainLoanModelDescription - secondaryLoanModelDescription - openingDate - endingDate - loanStatus - originLoanAmount - nominalFundBalance - linkedFundBalance - interestAmount - linkedInterestAmount - arrearsBalance - arrearsInterestAmount - arrearsInterestPercent - linkageType - linkageCurrencyCode - interestType - interestPercent - baseInterestPercent - interestGapPercent - monthsDuration - remainingMonthsDuration - originPaymentsQuantity - remainingPaymentsQuantity - fundPaymentType - lastPaymentAmount - lastLinkedPaymentAmount - lastInterestPaymentAmount - lastLinkedInterestPaymentAmount - nextPaymentAmount - nextLinkedPaymentAmount - nextInterestPaymentAmount - nextLinkedInterestPaymentAmount - capitalizedInterestAveragePercent - firstPaymentDate - monthlyPaymentAmount - loanSpecification - loanPurpose - lastInterestPaymentDueDate - firstInterestPaymentDueDate - loanRegistrationValueDate - loanRemainingPeriodInMonths - interestPaymentMethod - loanAccountType - earlyPaymentsCount - loanStatusDescription - interestChangeMethodDescription - linkageTypeDescription - interestTypeDescription - fundPaymentTypeDescription - loanAccountTypeDescription - loanSpecificationCodeDescription - loanAccountID - loanAccountCurrencyCode - handlingBranchName - handlingBranch required: - loans GetAccountLoansResponse: properties: data: title: data description: אובייקט אב type: object properties: loans: type: array items: title: loans description: הלוואות type: object properties: handlingBranch: title: handlingBranch description: סניף מנהל החשבון type: string loanSpecification: title: loanSpecification description: 'אפיון הלוואה ספציפי ' type: string enum: - EveryPurpose - BankEligibility - BusinessLoanDeposits - NoDeposit - AbsoluteGrant - Housing - SpecificInterestPeriod - BudgetEligibility - ConditionalGrant - NoSpecificCharacterization - CapitalNotesDeposits - PartialStructuredDeposit - KibbutzDepositsLoans - StocksStructuredDeposit - OldLayout - Business - NewLayout debtStartingDate: title: debtStartingDate description: 'תאריך תחילת עומק פיגור ' type: string format: date arrearsBalance: title: arrearsBalance description: יתרת פיגורים type: number paymentDueDay: title: paymentDueDay description: יום פירעון קרן בחודש - 1..31 type: integer arrearsAccountCurrencyCode: title: arrearsAccountCurrencyCode description: קוד מטבע חשבון תמורה type: string example: USD nominalFundBalance: title: nominalFundBalance description: יתרת קרן נומינלית type: number loanStatus: title: loanStatus description: סטטוס הלוואה type: string enum: - Active - NotApproved - RepaymentAtEndingDate - RolledUp - EarlyRepayment - Transferred - Canceled - Deleted loanPurpose: title: loanPurpose description: 'מטרת הלוואה ' type: string enum: - RegularLoan - AllPurposeMortgage - HousingLoan - Business loanRegistrationChannel: title: loanRegistrationChannel description: הערוץ שבו הוקמה ההלוואה type: string enum: - TeleBank - Unknown - Feedback - Branch - Internet - InteractiveVoiceResponse loanSpecificationCodeDescription: title: loanSpecificationCodeDescription description: "תיאור אפיון הלוואה ספציפי\t" type: string foreignCurrencyLoan: title: foreignCurrencyLoan description: הלוואת מט"ח type: object properties: lastInterestPaymentRate: title: lastInterestPaymentRate description: שער של מט"ח לתאריך תשלום אחרון שוטף ריבית type: number originRate: title: originRate description: 'שער יסודי ' type: number currentRate: title: currentRate description: 'שער נוכחי ' type: number lastFundPaymentRate: title: lastFundPaymentRate description: שער של מט"ח לתאריך תשלום אחרון שוטף קרן type: number monthlyPaymentAmount: title: monthlyPaymentAmount description: סכום תשלום חודשי type: number EMILoanFlagDescription: title: EMILoanFlagDescription description: "תיאור סמן הלוואת EMI\t" type: string customerLoanRelationType: title: customerLoanRelationType description: קשר הלקוח להלוואה type: string enum: - AccountParticipant - Owner - Guarantor - None nextInterestChangeDate: title: nextInterestChangeDate description: 'תאריך שינוי ריבית הבא ' type: string format: date loanPurposeDescription: title: loanPurposeDescription description: "תיאור מטרת הלוואה\t" type: string example: הלוואה רגילה earlyPaymentsCount: title: earlyPaymentsCount description: מספר פרעונות מוקדמים שבוצעו type: integer lastInterestPaymentAmount: title: lastInterestPaymentAmount description: סכום פירעון ריבית אחרון type: number arrearsInterestPercent: title: arrearsInterestPercent description: אחוז ריבית פיגורים type: number earlyPaymentWithoutNotificationFee: title: earlyPaymentWithoutNotificationFee description: עמלת פירעון מוקדם אי הודעה type: number linkedInterestAmount: title: linkedInterestAmount description: שווי הצמדת ריבית type: number linkageTypeDescription: title: linkageTypeDescription description: "תיאור קוד הצמדה\t" type: string endingDate: title: endingDate description: 'תאריך סיום ' type: string format: date loanAccountTypeDescription: title: loanAccountTypeDescription description: "תיאור סוג חשבון ההלוואה - האם מדובר בהלוואה או פקדון\t" type: string example: פיקדון handlingBranchName: title: handlingBranchName description: שם סניף מנהל type: string returnInterestWithoutFeesPercent: title: returnInterestWithoutFeesPercent description: אחוז ריבית כוללת חזויה ללא עמלות(IRR) type: number loanAccountType: title: loanAccountType description: 'סוג חשבון ההלוואה: הלוואה או פקדון' type: string enum: - Deposit - Loan monthsDuration: title: monthsDuration description: תקופת הלוואה בחודשים type: integer nextFundPaymentDate: title: nextFundPaymentDate description: 'תאריך תשלום קרן הבא ' type: string format: date lastLinkedInterestPaymentAmount: title: lastLinkedInterestPaymentAmount description: סכום פירעון הצמדת רבית אחרון type: number returnInterestIncludeFeesPercent: title: returnInterestIncludeFeesPercent description: אחוז ריבית כוללת חזויה עם עמלות (IRR) type: number capitalizedInterestAveragePercent: title: capitalizedInterestAveragePercent description: אחוז ריבית ממוצעת להיוון type: number linkageType: title: linkageType description: קוד הצמדה type: string enum: - IndexLinked - NotLinked - ForeignExchangeMarketLinked interestChangeFrequencyType: title: interestChangeFrequencyType description: סוג תדירות שינוי ריבית type: string enum: - "No" - Daily - Monthly fundPaymentType: title: fundPaymentType description: אופן תשלום קרן type: string enum: - FixedFund - Bullet - Spitzer debtDurationCalculationTypeDescription: title: debtDurationCalculationTypeDescription description: "תיאור שיטת חישוב עומק פיגור\t" type: string example: לפי עומק פיגור bulletGraceFlag: title: bulletGraceFlag description: סמן המציין האם ההלוואה היא הלוואת גישור (bullet) או עם דחיית תשלומים ( grace ) type: string enum: - FundInterestWithoutGrace - FundByGrace - FundInterestByBullet - FundInterestByGrace - FundByBulletInterestByPayments interestPaymentMethod: title: interestPaymentMethod description: אופן תשלום ריבית type: string enum: - LoanTrack - ByInterestRate - InterestAtEnd - InterestInAdvance - LoanPrincipal - NoInterest - Spitzer nextInterestPaymentDueDate: title: nextInterestPaymentDueDate description: 'תאריך פירעון ריבית הבא ' type: string format: date interestGapEarlyPaymentFee: title: interestGapEarlyPaymentFee description: עמלת פירעון מוקדם הפרש ריבית type: number indexedLoan: title: indexedLoan description: 'הלוואה צמודה ' type: object properties: indexUpdateDate: title: indexUpdateDate description: תאריך עדכון מדד אחרון type: string format: date originRate: title: originRate description: 'שער יסודי ' type: number originIndex: title: originIndex description: מדד יסודי type: number currentRate: title: currentRate description: 'שער נוכחי ' type: number currentIndex: title: currentIndex description: מדד נוכחי שבו חושב שווי ההלוואה type: number rateUpdateDate: title: rateUpdateDate description: תאריך עדכון שער אחרון type: string format: date loanTypeDescription: title: loanTypeDescription description: "תיאור סוג הלוואה\t" type: string example: גרירה mainLoanModelDescription: title: mainLoanModelDescription description: תיאור דגם ראשי (תיאור סוג ההלוואה) type: string example: הלוואה לא צמודה בריבית קבועה fundPaymentTypeDescription: title: fundPaymentTypeDescription description: "תיאור אופן תשלום קרן\t" type: string lastInterestPaymentDueDate: title: lastInterestPaymentDueDate description: 'תאריך פירעון ריבית אחרון ' type: string format: date interestAmount: title: interestAmount description: שווי סכום ריבית type: number arrearsInterestAmount: title: arrearsInterestAmount description: שווי ריבית פיגורים type: number debtDurationMonths: title: debtDurationMonths description: עומק פיגור בחודשים type: integer entitlementLoanTypeDescription: title: entitlementLoanTypeDescription description: "תיאור סמן הלוואת זכאות\t" type: string example: זכאות linkageCurrencyCode: title: linkageCurrencyCode description: קוד מטבע הצמדה type: string example: USD indexGapEarlyPaymentFee: title: indexGapEarlyPaymentFee description: עמלת פירעון מוקדם הפרש מדד type: number payingAccount: title: payingAccount description: חשבון תשלום type: object properties: israeliBankCode: title: israeliBankCode description: קוד בנק ישראלי type: string example: "11" accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{0,2}[1-9]-[0-9]{0,9}[1-9]$ example: 140-334543 legacyAccountID: title: legacyAccountID description: חשבון מלא של מערכת ישנה (מוסבות} type: string example: 10-0602-00-521904 isExternalAccount: title: isExternalAccount description: האם חשבון בבנק אחר בארץ (שאינו דיסקונט/מרכנתיל). type: boolean currencyCode: title: currencyCode description: קוד מטבע type: string example: USD required: - isExternalAccount - israeliBankCode - accountID - legacyAccountID series: title: series description: סדרה type: object properties: remainingFundPaymentsCount: title: remainingFundPaymentsCount description: מספר סדרות קרן שנותרו type: integer firstSeriesExecutionDate: title: firstSeriesExecutionDate description: 'תאריך ראשון לביצוע הסדרה ' type: string format: date isSeriesLoan: title: isSeriesLoan description: הלוואה בסדרת תשלומים type: boolean required: - isSeriesLoan lastFundPaymentDate: title: lastFundPaymentDate description: תאריך פרעון קרן אחרון type: string format: date linkedFundBalance: title: linkedFundBalance description: שווי הצמדת יתרה (שווי הצמדת קרן) type: number interestChangeMethodDescription: title: interestChangeMethodDescription description: "תיאור אופן שינוי ריבית\t" type: string nextPaymentAmount: title: nextPaymentAmount description: סכום פירעון קרן הבא type: number mortgageLoanType: title: mortgageLoanType description: סוג הלוואה type: string enum: - Extension - HousingLoan - Dragging - Reorganization - DeploymentLayout - DraggingAddition - FixedInterestRate - Recycling - None interestTypeDescription: title: interestTypeDescription description: "תיאור סוג ריבית - אופי ריבית\t" type: string paymentDueDayType: title: paymentDueDayType description: סוג יום תשלום type: string enum: - EndOfQuarter - PaymentDay - EndOfYear - EndOfMonth - EndOfHalfYear interestChangeMethod: title: interestChangeMethod description: אופן שינוי ריבית type: string enum: - Interest - InterestChange - LoanFund - DailyChange - Reports remainingMonthsDuration: title: remainingMonthsDuration description: תקופת ההלוואה שנותרה בחודשים type: integer baseInterestType: title: baseInterestType description: טבלת בסיס ריבית type: string enum: - LinkedInterestYields - UnindexedInterestRatesBondYields - WithoutBaseInterest - BankOfIsrael - Prime - InterestUnindexedLoans - InterestIndexLinkedInterestRates - Livor earlyPaymentFee: title: earlyPaymentFee description: עמלת פירעון מוקדם תפעולית type: number interestChangeFrequency: title: interestChangeFrequency description: תדירות שינוי ריבית type: integer loanStatusDescription: title: loanStatusDescription description: "תיאור סטטוס הלוואה\t" type: string example: נפרעה במועדה EMILoanFlag: title: EMILoanFlag description: סמן הלוואת EMI type: string enum: - EMIInsuredDeal - EMIInsured - WithoutEMI loanRegistrationValueDate: title: loanRegistrationValueDate description: 'תאריך ערך הקמה ' type: string format: date interestPercent: title: interestPercent description: אחוז ריבית type: number interestGapPercent: title: interestGapPercent description: אחוז ריבית מרווח type: number standingOrderPayingAccount: title: standingOrderPayingAccount description: חשבון הוראת קבע לתשלום type: object properties: israeliBankCode: title: israeliBankCode description: קוד בנק ישראלי type: string example: "11" accountID: title: accountID description: מזהה חשבון type: string pattern: ^[0-9]{0,2}[1-9]-[0-9]{0,9}[1-9]$ example: 140-334543 required: - israeliBankCode - accountID baseInterestPercent: title: baseInterestPercent description: אחוז ריבית בסיס type: number entitlementLoanType: title: entitlementLoanType description: סמן הלוואת זכאות type: string enum: - ComplementaryLoan - EntitlementLoan - NotEntitlementLoan originLoanAmount: title: originLoanAmount description: סכום הקמה מקורי type: number customerID: title: customerID description: מזהה לקוח type: string bulletGraceFlagDescription: title: bulletGraceFlagDescription description: תיאור סוג הלוואת הבלון/ דחיית תשלומים type: string example: תשלום ק/ר ללא גרייס secondaryLoanModelDescription: title: secondaryLoanModelDescription description: תיאור דגם משני(תיאור מטרת הלוואה או אוכלוסייה) type: string example: הלוואה ללקוחות פרטיים interestType: title: interestType description: סוג ריבית - אופי ריבית type: string enum: - Variable - Fixed firstPaymentDate: title: firstPaymentDate description: 'תאריך תשלום קרן ראשון ' type: string format: date arrearsAccountID: title: arrearsAccountID description: חשבון תמורה - פיגורים(מהווה תמורה להלוואה, במבנה יוניסיס) type: string example: 010-0602-00-521904 originPaymentsQuantity: title: originPaymentsQuantity description: מספר תשלומים מקורי type: integer adjustedInterestPercent: title: adjustedInterestPercent description: אחוז ריבית מתואמת type: number nextLinkedInterestPaymentAmount: title: nextLinkedInterestPaymentAmount description: סכום פירעון ריבית הצמדה הבא type: number customerLoanRelationTypeDescription: title: customerLoanRelationTypeDescription description: תיאור קוד קשר להלוואה type: string example: שותף loanRegistrationChannelDescription: title: loanRegistrationChannelDescription description: "תיאור הערוץ שבו הוקמה ההלוואה\t" type: string interestPaymentMethodDescription: title: interestPaymentMethodDescription description: "תיאור אופן תשלום ריבית\t" type: string lastPaymentAmount: title: lastPaymentAmount description: סכום פירעון קרן אחרון type: number loanRemainingPeriodInMonths: title: loanRemainingPeriodInMonths description: יתרת תקופת הלוואה (יתרה בחודשים) type: integer accountOwnerName: title: accountOwnerName description: 'שם בעל חשבון ' type: string openingDate: title: openingDate description: 'תאריך פתיחה ' type: string format: date firstInterestPaymentDueDate: title: firstInterestPaymentDueDate description: 'תאריך תשלום ריבית ראשון ' type: string format: date accountCurrencyCode: title: accountCurrencyCode description: קוד מטבע חשבון עוש type: string example: USD secondaryLoanModelCode: title: secondaryLoanModelCode description: קוד דגם משני (מטרת הלוואה או אוכלוסיה) type: string example: "0250" baseInterestTypeDescription: title: baseInterestTypeDescription description: "תיאור טבלת בסיס ריבית\t" type: string lastLinkedPaymentAmount: title: lastLinkedPaymentAmount description: סכום הצמדת קרן אחרון type: number interestChangeFrequencyTypeDescription: title: interestChangeFrequencyTypeDescription description: "תיאור סוג תדירות שינוי ריבית\t" type: string nextLinkedPaymentAmount: title: nextLinkedPaymentAmount description: סכום פירעון הצמדת קרן הבא type: number legacyAccountID: title: legacyAccountID description: חשבון מלא של מערכת ישנה (מוסבות} type: string example: 10-0602-00-521904 mainLoanModelCode: title: mainLoanModelCode description: קוד דגם ראשי (קוד עבור סוג ההלוואה) type: string example: "0250" nextInterestPaymentAmount: title: nextInterestPaymentAmount description: סכום פירעון ריבית הבא type: number debtDurationCalculationType: title: debtDurationCalculationType description: שיטת חישוב עומק פיגור type: string enum: - DebtByDate - WithoutDebt - DebtByAmount loanAccountID: title: loanAccountID description: חשבון הלוואה type: string example: 010-0602-00-521904 loanAccountCurrencyCode: title: loanAccountCurrencyCode description: קוד מטבע חשבון הלוואה type: string example: USD remainingPaymentsQuantity: title: remainingPaymentsQuantity description: מספר תשלומים שנותרו type: integer required: - mainLoanModelCode - mainLoanModelDescription - secondaryLoanModelDescription - openingDate - endingDate - loanStatus - originLoanAmount - nominalFundBalance - linkedFundBalance - interestAmount - linkedInterestAmount - arrearsBalance - arrearsInterestAmount - arrearsInterestPercent - linkageType - linkageCurrencyCode - interestType - interestPercent - baseInterestPercent - interestGapPercent - monthsDuration - remainingMonthsDuration - originPaymentsQuantity - remainingPaymentsQuantity - fundPaymentType - lastPaymentAmount - lastLinkedPaymentAmount - lastInterestPaymentAmount - lastLinkedInterestPaymentAmount - nextPaymentAmount - nextLinkedPaymentAmount - nextInterestPaymentAmount - nextLinkedInterestPaymentAmount - capitalizedInterestAveragePercent - firstPaymentDate - monthlyPaymentAmount - loanSpecification - loanPurpose - lastInterestPaymentDueDate - firstInterestPaymentDueDate - loanRegistrationValueDate - loanRemainingPeriodInMonths - interestPaymentMethod - loanAccountType - earlyPaymentsCount - loanStatusDescription - interestChangeMethodDescription - linkageTypeDescription - interestTypeDescription - fundPaymentTypeDescription - loanAccountTypeDescription - loanSpecificationCodeDescription - loanAccountID - loanAccountCurrencyCode - handlingBranchName - handlingBranch required: - loans GetLoanArrearsTransactionsResponse: properties: data: title: data description: אובייקט אב type: object properties: arrearsCurrencyCode: title: arrearsCurrencyCode description: קוד מטבע חשבון פיגורים type: string example: "12" arrearsAccountID: title: arrearsAccountID description: חשבון פיגורים type: string example: 010-0602-00-521904 transactions: type: array items: title: transactions description: תנועות type: object properties: transactionAmount: title: transactionAmount description: סכום פעולה type: number transactionDescription: title: transactionDescription description: מהות הפעולה type: string maxLength: 19 example: הקמת קרן transactionCode: title: transactionCode description: קוד פעולה (ארוע) type: integer valueDate: title: valueDate description: תאריך ערך type: string format: date currentRate: title: currentRate description: 'שער נוכחי ' type: number loanBalance: title: loanBalance description: יתרת הלוואה type: number calendarDate: title: calendarDate description: ' תאריך קלנדרי' type: string format: date required: - loanBalance - transactionAmount - transactionDescription - transactionCode - calendarDate - valueDate loanBalance: title: loanBalance description: יתרת הלוואה type: number required: - loanBalance GetAccountLoansBalancesResponse: properties: data: title: data description: אובייקט אב type: object properties: businessDate: title: businessDate description: יום עסקים type: string format: date threeMonthAgoBalance: title: threeMonthAgoBalance description: ייתרה לפני 3 חודשים type: number parallelThreeMonthsAverageBalance: title: parallelThreeMonthsAverageBalance description: ממוצע יתרה 3 חודשים תקופה מקבילה אשתקד type: number lastThreeMonthsAverageBalance: title: lastThreeMonthsAverageBalance description: ממוצע ייתרה שלושה חודשים אחרונים type: number parallelPreviousMonthBalance: title: parallelPreviousMonthBalance description: ייתרה סוף חודש קודם אשתקד type: number parallelThreeMonthsAgoBalance: title: parallelThreeMonthsAgoBalance description: ייתרה אשתקד לפני שלושה חודשים type: number loansBalance: title: loansBalance description: יתרת הלוואות type: number annualBalanceGrowthPercent: title: annualBalanceGrowthPercent description: אחוז גידול יתרה לעומת תקופה מקבילה אשתקד type: number twoMonthAgoBalance: title: twoMonthAgoBalance description: ייתרת לפני חודשיים type: number parallelTwoMonthsAgoBalance: title: parallelTwoMonthsAgoBalance description: ייתרה אשתקד לפני חודשיים type: number previousMonthBalance: title: previousMonthBalance description: ייתרה חודש קודם type: number required: - businessDate CreateMortgageSimulationV1Response: properties: data: title: data description: אובייקט אב type: object properties: IRRActualCostPercent: title: IRRActualCostPercent description: אחוז עלות ממשית - IRR type: number loanTracks: type: array items: title: loanTracks description: מסלולי הלוואות type: object properties: highestMonthlyPaymentAmount: title: highestMonthlyPaymentAmount description: 'סכום ההחזר החודשי הגבוה ביותר ' type: number durationInMonths: title: durationInMonths description: תקופת קדם הלוואה (בחודשים) type: number maximum: 999 totalPaymentAmountExcludingLinkage: title: totalPaymentAmountExcludingLinkage description: סך כל הסכום הצפוי החזוי שישולם עד לסוף תקופת ההלוואה לא כולל הצמדות type: number totalInterestAmount: title: totalInterestAmount description: סה"כ ריבית לתשלום type: number loanPeriods: type: array items: title: loanPeriods description: תקופות type: object properties: periodNumber: title: periodNumber description: מספר תקופה type: number maximum: 5 firstMonthPayment: title: firstMonthPayment description: סכום ההחזר החודשי עבור החודש הראשון type: number required: - periodNumber - firstMonthPayment maxItems: 5 preLoanID: title: preLoanID description: מספר קדם הלוואה (הלוואת שמיים) type: number maximum: 10000000000 loanTrackID: title: loanTrackID description: מזהה מסלול הלוואה type: number maximum: 10000000000 preLoanAmount: title: preLoanAmount description: סכום קדם הלוואה type: number actualCostPercent: title: actualCostPercent description: אחוז עלות ממשית type: number totalPaymentAmount: title: totalPaymentAmount description: סך כל הסכום הצפוי החזוי שישולם עד לסוף תקופת ההלוואה type: number adjustedInterestPercent: title: adjustedInterestPercent description: אחוז ריבית מתואמת type: number totalFeesAmount: title: totalFeesAmount description: סך עמלות type: number required: - preLoanID - loanTrackID - preLoanAmount - durationInMonths - adjustedInterestPercent - highestMonthlyPaymentAmount - totalPaymentAmount - totalPaymentAmountExcludingLinkage - totalInterestAmount - totalFeesAmount - actualCostPercent - loanPeriods currentIndex: title: currentIndex description: מדד נוכחי שבו חושב שווי ההלוואה type: number highestMonthlyPaymentTotalAmount: title: highestMonthlyPaymentTotalAmount description: 'סך התשלומים החודשים הגבוה ביותר ' type: number required: - IRRActualCostPercent - loanTracks - currentIndex - highestMonthlyPaymentTotalAmount CreateMortgageSimulationV1Request: properties: loanTracks: type: array items: title: loanTracks description: מסלולי הלוואות type: object properties: durationInMonths: title: durationInMonths description: תקופת קדם הלוואה (בחודשים) type: number maximum: 999 loanPeriods: type: array items: title: loanPeriods description: תקופות type: object properties: periodAmount: title: periodAmount description: סכום type: number periodDuration: title: periodDuration description: משך תקופה type: number periodNumber: title: periodNumber description: מספר תקופה type: number maximum: 5 interestPercent: title: interestPercent description: אחוז ריבית type: number interestIntervalPercent: title: interestIntervalPercent description: אחוז מרווח ריבית type: number required: - periodNumber - periodDuration - interestPercent - interestIntervalPercent - periodAmount maxItems: 5 preLoanID: title: preLoanID description: מספר קדם הלוואה (הלוואת שמיים) type: number maximum: 10000000000 interestIntervalPercent: title: interestIntervalPercent description: אחוז מרווח ריבית type: number loanTrackID: title: loanTrackID description: מזהה מסלול הלוואה type: number maximum: 10000000000 preLoanAmount: title: preLoanAmount description: סכום קדם הלוואה type: number nominalInterestPercent: title: nominalInterestPercent description: אחוז ריבית נומינלית type: number valueDate: title: valueDate description: תאריך ערך type: string format: date baseInterestPercent: title: baseInterestPercent description: אחוז ריבית בסיס type: number loanManagementFeeAmount: title: loanManagementFeeAmount description: עמלת דמי ניהול הלוואה type: number documentsFeeAmount: title: documentsFeeAmount description: עמלת מסמכים type: number paymentDay: title: paymentDay description: יום תשלום type: string enum: - FifteenthDay - TenthDay - FirstDay loanAccountID: title: loanAccountID description: חשבון הלוואה type: string example: 010-0602-00-521904 required: - loanTrackID - preLoanAmount - durationInMonths - baseInterestPercent - interestIntervalPercent - nominalInterestPercent - paymentDay - loanPeriods - valueDate required: - loanTracks GetAccountLoanEligibilityResponse: properties: data: title: data description: אובייקט אב type: object properties: loanAmount: title: loanAmount description: סכום הלוואה type: number x-ibm-endpoints: - endpointUrl: https://api.discountbank.co.il/prod/d description: Discount bank API Gateway type: - production - development ...