|
| 1 | +# AccountNumberApi |
| 2 | + |
| 3 | +All URIs are relative to *https://app.test.statflo.com* |
| 4 | + |
| 5 | +Method | HTTP request | Description |
| 6 | +------------- | ------------- | ------------- |
| 7 | +[**accountNumberGet**](AccountNumberApi.md#accountNumberGet) | **GET** /v4/api/account-number/{id} | |
| 8 | +[**accountNumberSearch**](AccountNumberApi.md#accountNumberSearch) | **GET** /v4/api/account-number | |
| 9 | + |
| 10 | +<a name="accountNumberGet"></a> |
| 11 | +# **accountNumberGet** |
| 12 | +> AccountNumber accountNumberGet(id) |
| 13 | +
|
| 14 | + |
| 15 | + |
| 16 | +Retrieve a message template. |
| 17 | + |
| 18 | +### Example |
| 19 | +```java |
| 20 | +// Import classes: |
| 21 | +//import com.statflo.client.ApiClient; |
| 22 | +//import com.statflo.client.ApiException; |
| 23 | +//import com.statflo.client.Configuration; |
| 24 | +//import com.statflo.client.auth.*; |
| 25 | +//import com.statflo.client.api.AccountNumberApi; |
| 26 | + |
| 27 | +ApiClient defaultClient = Configuration.getDefaultApiClient(); |
| 28 | + |
| 29 | + |
| 30 | +AccountNumberApi apiInstance = new AccountNumberApi(); |
| 31 | +String id = "id_example"; // String | |
| 32 | +try { |
| 33 | + AccountNumber result = apiInstance.accountNumberGet(id); |
| 34 | + System.out.println(result); |
| 35 | +} catch (ApiException e) { |
| 36 | + System.err.println("Exception when calling AccountNumberApi#accountNumberGet"); |
| 37 | + e.printStackTrace(); |
| 38 | +} |
| 39 | +``` |
| 40 | + |
| 41 | +### Parameters |
| 42 | + |
| 43 | +Name | Type | Description | Notes |
| 44 | +------------- | ------------- | ------------- | ------------- |
| 45 | + **id** | **String**| | |
| 46 | + |
| 47 | +### Return type |
| 48 | + |
| 49 | +[**AccountNumber**](AccountNumber.md) |
| 50 | + |
| 51 | +### Authorization |
| 52 | + |
| 53 | +[Bearer](../README.md#Bearer) |
| 54 | + |
| 55 | +### HTTP request headers |
| 56 | + |
| 57 | + - **Content-Type**: Not defined |
| 58 | + - **Accept**: application/json |
| 59 | + |
| 60 | +<a name="accountNumberSearch"></a> |
| 61 | +# **accountNumberSearch** |
| 62 | +> AccountNumberPaginationResponse accountNumberSearch(filter, query, page, perPage, sort) |
| 63 | +
|
| 64 | + |
| 65 | + |
| 66 | +Search Account Number. |
| 67 | + |
| 68 | +### Example |
| 69 | +```java |
| 70 | +// Import classes: |
| 71 | +//import com.statflo.client.ApiClient; |
| 72 | +//import com.statflo.client.ApiException; |
| 73 | +//import com.statflo.client.Configuration; |
| 74 | +//import com.statflo.client.auth.*; |
| 75 | +//import com.statflo.client.api.AccountNumberApi; |
| 76 | + |
| 77 | +ApiClient defaultClient = Configuration.getDefaultApiClient(); |
| 78 | + |
| 79 | + |
| 80 | +AccountNumberApi apiInstance = new AccountNumberApi(); |
| 81 | +java.util.HashMap filter = new java.util.HashMap(); // java.util.HashMap | |
| 82 | +String query = "query_example"; // String | |
| 83 | +Integer page = 56; // Integer | |
| 84 | +Integer perPage = 56; // Integer | |
| 85 | +String sort = "sort_example"; // String | |
| 86 | +try { |
| 87 | + AccountNumberPaginationResponse result = apiInstance.accountNumberSearch(filter, query, page, perPage, sort); |
| 88 | + System.out.println(result); |
| 89 | +} catch (ApiException e) { |
| 90 | + System.err.println("Exception when calling AccountNumberApi#accountNumberSearch"); |
| 91 | + e.printStackTrace(); |
| 92 | +} |
| 93 | +``` |
| 94 | + |
| 95 | +### Parameters |
| 96 | + |
| 97 | +Name | Type | Description | Notes |
| 98 | +------------- | ------------- | ------------- | ------------- |
| 99 | + **filter** | [**java.util.HashMap**](.md)| | [optional] |
| 100 | + **query** | **String**| | [optional] |
| 101 | + **page** | **Integer**| | [optional] |
| 102 | + **perPage** | **Integer**| | [optional] |
| 103 | + **sort** | **String**| | [optional] |
| 104 | + |
| 105 | +### Return type |
| 106 | + |
| 107 | +[**AccountNumberPaginationResponse**](AccountNumberPaginationResponse.md) |
| 108 | + |
| 109 | +### Authorization |
| 110 | + |
| 111 | +[Bearer](../README.md#Bearer) |
| 112 | + |
| 113 | +### HTTP request headers |
| 114 | + |
| 115 | + - **Content-Type**: Not defined |
| 116 | + - **Accept**: application/json |
| 117 | + |
0 commit comments