Class StandingInstructionHistoryApiResource

java.lang.Object
org.apache.fineract.portfolio.account.api.StandingInstructionHistoryApiResource

@Path("/v1/standinginstructionrunhistory") @Component public class StandingInstructionHistoryApiResource extends Object
  • Constructor Details

    • StandingInstructionHistoryApiResource

      public StandingInstructionHistoryApiResource()
  • Method Details

    • retrieveAll

      @GET @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.service.Page<StandingInstructionHistoryData> retrieveAll(@QueryParam("externalId") String externalId, @QueryParam("offset") Integer offset, @QueryParam("limit") Integer limit, @QueryParam("orderBy") String orderBy, @QueryParam("sortOrder") String sortOrder, @QueryParam("transferType") Integer transferType, @QueryParam("clientName") String clientName, @QueryParam("clientId") Long clientId, @QueryParam("fromAccountId") Long fromAccount, @QueryParam("fromAccountType") Integer fromAccountType, @QueryParam("locale") String locale, @QueryParam("dateFormat") String rawDateFormat, @QueryParam("fromDate") org.apache.fineract.infrastructure.core.api.DateParam fromDateParam, @QueryParam("toDate") org.apache.fineract.infrastructure.core.api.DateParam toDateParam)