Class AccountTransfersApiResource
java.lang.Object
org.apache.fineract.portfolio.account.api.AccountTransfersApiResource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionretrieveAll(jakarta.ws.rs.core.UriInfo uriInfo, String externalId, Integer offset, Integer limit, String orderBy, String sortOrder, Long accountDetailId) retrieveOne(Long transferId, jakarta.ws.rs.core.UriInfo uriInfo) template(Long fromOfficeId, Long fromClientId, Long fromAccountId, Integer fromAccountType, Long toOfficeId, Long toClientId, Long toAccountId, Integer toAccountType, jakarta.ws.rs.core.UriInfo uriInfo) templateRefundByTransfer(Long fromOfficeId, Long fromClientId, Long fromAccountId, Integer fromAccountType, Long toOfficeId, Long toClientId, Long toAccountId, Integer toAccountType, jakarta.ws.rs.core.UriInfo uriInfo) templateRefundByTransferPost(String apiRequestBodyAsJson)
-
Constructor Details
-
AccountTransfersApiResource
public AccountTransfersApiResource()
-
-
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, @Context jakarta.ws.rs.core.UriInfo uriInfo) -
create
-
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("accountDetailId") Long accountDetailId) -
retrieveOne
-
templateRefundByTransfer
@GET @Path("templateRefundByTransfer") @Consumes("application/json") @Produces("application/json") public String templateRefundByTransfer(@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, @Context jakarta.ws.rs.core.UriInfo uriInfo) -
templateRefundByTransferPost
-