Interface StandingInstructionsHistoryApi
public interface StandingInstructionsHistoryApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<GetStandingInstructionRunHistoryResponse> retrieveAll20(String externalId, Integer offset, Integer limit, String orderBy, String sortOrder, Integer transferType, String clientName, Long clientId, Long fromAccountId, Integer fromAccountType, String locale, String dateFormat, Object fromDate, Object toDate) Standing Instructions Logged History The list capability of history can support pagination and sorting Example Requests : standinginstructionrunhistory standinginstructionrunhistory?orderBy=name&sortOrder=DESC standinginstructionrunhistory?offset=10&limit=50retrofit2.Call<GetStandingInstructionRunHistoryResponse> retrieveAll20(String externalId, Integer offset, Integer limit, String orderBy, String sortOrder, Integer transferType, String clientName, Long clientId, Long fromAccountId, Integer fromAccountType, String locale, String dateFormat, Object fromDate, Object toDate, Map<String, String> headers) Standing Instructions Logged History The list capability of history can support pagination and sorting Example Requests : standinginstructionrunhistory standinginstructionrunhistory?orderBy=name&sortOrder=DESC standinginstructionrunhistory?offset=10&limit=50
-
Method Details
-
retrieveAll20
@GET("v1/standinginstructionrunhistory") retrofit2.Call<GetStandingInstructionRunHistoryResponse> retrieveAll20(@Query("externalId") String externalId, @Query("offset") Integer offset, @Query("limit") Integer limit, @Query("orderBy") String orderBy, @Query("sortOrder") String sortOrder, @Query("transferType") Integer transferType, @Query("clientName") String clientName, @Query("clientId") Long clientId, @Query("fromAccountId") Long fromAccountId, @Query("fromAccountType") Integer fromAccountType, @Query("locale") String locale, @Query("dateFormat") String dateFormat, @Query("fromDate") Object fromDate, @Query("toDate") Object toDate) Standing Instructions Logged History The list capability of history can support pagination and sorting Example Requests : standinginstructionrunhistory standinginstructionrunhistory?orderBy=name&sortOrder=DESC standinginstructionrunhistory?offset=10&limit=50- Parameters:
externalId- externalId (optional)offset- offset (optional)limit- limit (optional)orderBy- orderBy (optional)sortOrder- sortOrder (optional)transferType- transferType (optional)clientName- clientName (optional)clientId- clientId (optional)fromAccountId- fromAccountId (optional)fromAccountType- fromAccountType (optional)locale- locale (optional)dateFormat- dateFormat (optional)fromDate- fromDate (optional)toDate- toDate (optional)- Returns:
- Call<GetStandingInstructionRunHistoryResponse>
-
retrieveAll20
@GET("v1/standinginstructionrunhistory") retrofit2.Call<GetStandingInstructionRunHistoryResponse> retrieveAll20(@Query("externalId") String externalId, @Query("offset") Integer offset, @Query("limit") Integer limit, @Query("orderBy") String orderBy, @Query("sortOrder") String sortOrder, @Query("transferType") Integer transferType, @Query("clientName") String clientName, @Query("clientId") Long clientId, @Query("fromAccountId") Long fromAccountId, @Query("fromAccountType") Integer fromAccountType, @Query("locale") String locale, @Query("dateFormat") String dateFormat, @Query("fromDate") Object fromDate, @Query("toDate") Object toDate, @HeaderMap Map<String, String> headers) Standing Instructions Logged History The list capability of history can support pagination and sorting Example Requests : standinginstructionrunhistory standinginstructionrunhistory?orderBy=name&sortOrder=DESC standinginstructionrunhistory?offset=10&limit=50- Parameters:
externalId- externalId (optional)offset- offset (optional)limit- limit (optional)orderBy- orderBy (optional)sortOrder- sortOrder (optional)transferType- transferType (optional)clientName- clientName (optional)clientId- clientId (optional)fromAccountId- fromAccountId (optional)fromAccountType- fromAccountType (optional)locale- locale (optional)dateFormat- dateFormat (optional)fromDate- fromDate (optional)toDate- toDate (optional)- Returns:
- Call<GetStandingInstructionRunHistoryResponse>
-