Class StandingInstructionApiResource

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

@Path("/v1/standinginstructions") @Component public class StandingInstructionApiResource extends Object
  • Constructor Details

    • StandingInstructionApiResource

      public StandingInstructionApiResource()
  • Method Details

    • template

      @GET @Path("template") @Consumes("application/json") @Produces("application/json") public String template(@QueryParam("fromOfficeId") Long fromOfficeId, @QueryParam("fromClientId") Long fromClientId, @QueryParam("fromAccountId") Long fromAccountId, @QueryParam("fromAccountType") Integer fromAccountType, @QueryParam("toOfficeId") Long toOfficeId, @QueryParam("toClientId") Long toClientId, @QueryParam("toAccountId") Long toAccountId, @QueryParam("toAccountType") Integer toAccountType, @QueryParam("transferType") Integer transferType, @Context jakarta.ws.rs.core.UriInfo uriInfo)
    • create

      @POST @Consumes("application/json") @Produces("application/json") public String create(String apiRequestBodyAsJson)
    • update

      @PUT @Path("{standingInstructionId}") @Consumes("application/json") @Produces("application/json") public String update(@PathParam("standingInstructionId") Long standingInstructionId, String apiRequestBodyAsJson, @QueryParam("command") String commandParam)
    • retrieveAll

      @GET @Consumes("application/json") @Produces("application/json") public String retrieveAll(@Context jakarta.ws.rs.core.UriInfo uriInfo, @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)
    • retrieveOne

      @GET @Path("{standingInstructionId}") @Consumes("application/json") @Produces("application/json") public String retrieveOne(@PathParam("standingInstructionId") Long standingInstructionId, @Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("externalId") String externalId, @QueryParam("offset") Integer offset, @QueryParam("limit") Integer limit, @QueryParam("orderBy") String orderBy, @QueryParam("sortOrder") String sortOrder)