Class DepositBankAccountsBankApi
- java.lang.Object
-
- app.cybrid.cybrid_api_bank.client.api.DepositBankAccountsBankApi
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-10-23T18:14:37.948622Z[Etc/UTC]") public class DepositBankAccountsBankApi extends Object
-
-
Constructor Summary
Constructors Constructor Description DepositBankAccountsBankApi()DepositBankAccountsBankApi(ApiClient apiClient)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<DepositBankAccountBankModel>createDepositBankAccount(PostDepositBankAccountBankModel postDepositBankAccountBankModel)Create Deposit Bank Account Creates a deposit bank account.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<DepositBankAccountBankModel>>createDepositBankAccountWithHttpInfo(PostDepositBankAccountBankModel postDepositBankAccountBankModel)ApiClientgetApiClient()reactor.core.publisher.Mono<DepositBankAccountBankModel>getDepositBankAccount(String depositBankAccountGuid)Get Deposit Bank Account Retrieves a deposit bank account.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<DepositBankAccountBankModel>>getDepositBankAccountWithHttpInfo(String depositBankAccountGuid)reactor.core.publisher.Mono<DepositBankAccountListBankModel>listDepositBankAccounts(BigInteger page, BigInteger perPage, String guid, String bankGuid, String customerGuid, String label, String uniqueMemoId, String type, String parentDepositBankAccountGuid)List Deposit Bank Accounts Retrieves a list of deposit bank accounts.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<DepositBankAccountListBankModel>>listDepositBankAccountsWithHttpInfo(BigInteger page, BigInteger perPage, String guid, String bankGuid, String customerGuid, String label, String uniqueMemoId, String type, String parentDepositBankAccountGuid)voidsetApiClient(ApiClient apiClient)
-
-
-
Constructor Detail
-
DepositBankAccountsBankApi
public DepositBankAccountsBankApi()
-
DepositBankAccountsBankApi
@Autowired public DepositBankAccountsBankApi(ApiClient apiClient)
-
-
Method Detail
-
getApiClient
public ApiClient getApiClient()
-
setApiClient
public void setApiClient(ApiClient apiClient)
-
createDepositBankAccount
public reactor.core.publisher.Mono<DepositBankAccountBankModel> createDepositBankAccount(PostDepositBankAccountBankModel postDepositBankAccountBankModel) throws org.springframework.web.reactive.function.client.WebClientResponseException
Create Deposit Bank Account Creates a deposit bank account. ## State | State | Description | |-------|-------------| | storing | The Platform is storing the deposit bank account details in our private store | | created | The Platform has created the deposit bank account | Required scope: **deposit_bank_accounts:execute**201 - Deposit Bank Account created
401 - Unauthorized - Authentication failed,
403 - Invalid scope
422 - Unable to process request
- Parameters:
postDepositBankAccountBankModel- The postDepositBankAccountBankModel parameter- Returns:
- DepositBankAccountBankModel
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createDepositBankAccountWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<DepositBankAccountBankModel>> createDepositBankAccountWithHttpInfo(PostDepositBankAccountBankModel postDepositBankAccountBankModel) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
getDepositBankAccount
public reactor.core.publisher.Mono<DepositBankAccountBankModel> getDepositBankAccount(String depositBankAccountGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
Get Deposit Bank Account Retrieves a deposit bank account. Required scope: **deposit_bank_accounts:read**200 - deposit bank account found
401 - Unauthorized - Authentication failed,
403 - Invalid scope
404 - deposit_bank_account not found
- Parameters:
depositBankAccountGuid- Identifier for the deposit bank account.- Returns:
- DepositBankAccountBankModel
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
getDepositBankAccountWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<DepositBankAccountBankModel>> getDepositBankAccountWithHttpInfo(String depositBankAccountGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
listDepositBankAccounts
public reactor.core.publisher.Mono<DepositBankAccountListBankModel> listDepositBankAccounts(BigInteger page, BigInteger perPage, String guid, String bankGuid, String customerGuid, String label, String uniqueMemoId, String type, String parentDepositBankAccountGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
List Deposit Bank Accounts Retrieves a list of deposit bank accounts. Required scope: **deposit_bank_accounts:read**200 - get list of deposit bank accounts
400 - Invalid requests
401 - Unauthorized - Authentication failed,
403 - Invalid scope
- Parameters:
page- The page index to retrieve.perPage- The number of entities per page to return.guid- Comma separated guids to list deposit bank accounts for.bankGuid- Comma separated bank_guids to list deposit bank accounts for.customerGuid- Comma separated customer_guids to list deposit bank accounts for.label- Comma separated labels to list deposit bank accounts for.uniqueMemoId- Comma separated unique memo ids to list deposit bank accounts for.type- Comma separated types to list deposit bank accounts for.parentDepositBankAccountGuid- Comma separated guids for parent accounts to list deposit bank accounts for.- Returns:
- DepositBankAccountListBankModel
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
listDepositBankAccountsWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<DepositBankAccountListBankModel>> listDepositBankAccountsWithHttpInfo(BigInteger page, BigInteger perPage, String guid, String bankGuid, String customerGuid, String label, String uniqueMemoId, String type, String parentDepositBankAccountGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
-