Interface LoanCobCatchUpApi


public interface LoanCobCatchUpApi
  • Method Details

    • executeLoanCOBCatchUp

      @POST("v1/loans/catch-up") retrofit2.Call<Void> executeLoanCOBCatchUp()
      Executes Loan COB Catch Up Executes the Loan COB job on every day from the oldest Loan to the current COB business date
      Returns:
      Call<Void>
    • getOldestCOBProcessedLoan

      @GET("v1/loans/oldest-cob-closed") retrofit2.Call<OldestCOBProcessedLoanDTO> getOldestCOBProcessedLoan()
      Retrieves the oldest COB processed loan Retrieves the COB business date and the oldest COB processed loan
      Returns:
      Call<OldestCOBProcessedLoanDTO>
    • isCatchUpRunning

      @GET("v1/loans/is-catch-up-running") retrofit2.Call<IsCatchUpRunningDTO> isCatchUpRunning()
      Retrieves whether Loan COB catch up is running Retrieves whether Loan COB catch up is running, and the current execution date if it is running.
      Returns:
      Call<IsCatchUpRunningDTO>
    • executeLoanCOBCatchUp

      @POST("v1/loans/catch-up") retrofit2.Call<Void> executeLoanCOBCatchUp(@HeaderMap Map<String,String> headers)
      Executes Loan COB Catch Up Executes the Loan COB job on every day from the oldest Loan to the current COB business date
      Returns:
      Call<Void>
    • getOldestCOBProcessedLoan

      @GET("v1/loans/oldest-cob-closed") retrofit2.Call<OldestCOBProcessedLoanDTO> getOldestCOBProcessedLoan(@HeaderMap Map<String,String> headers)
      Retrieves the oldest COB processed loan Retrieves the COB business date and the oldest COB processed loan
      Returns:
      Call<OldestCOBProcessedLoanDTO>
    • isCatchUpRunning

      @GET("v1/loans/is-catch-up-running") retrofit2.Call<IsCatchUpRunningDTO> isCatchUpRunning(@HeaderMap Map<String,String> headers)
      Retrieves whether Loan COB catch up is running Retrieves whether Loan COB catch up is running, and the current execution date if it is running.
      Returns:
      Call<IsCatchUpRunningDTO>