Class: IntegrationApi::IAVApi
- Inherits:
-
Object
- Object
- IntegrationApi::IAVApi
- Defined in:
- lib/integration_api/api/iav_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_iav_using_post(iav_request_co, opts = {}) ⇒ IavResponseVo
Instant Account Verification of an account.
-
#create_iav_using_post_with_http_info(iav_request_co, opts = {}) ⇒ Array<(IavResponseVo, Fixnum, Hash)>
Instant Account Verification of an account.
-
#get_iav_using_get(nucleus_bank_link_id, opts = {}) ⇒ IavResponseVo
Get verified account based on id.
-
#get_iav_using_get_with_http_info(nucleus_bank_link_id, opts = {}) ⇒ Array<(IavResponseVo, Fixnum, Hash)>
Get verified account based on id.
-
#initialize(api_client = ApiClient.default) ⇒ IAVApi
constructor
A new instance of IAVApi.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/integration_api/api/iav_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create_iav_using_post(iav_request_co, opts = {}) ⇒ IavResponseVo
Instant Account Verification of an account. Endpoint is used to verify account.
27 28 29 30 |
# File 'lib/integration_api/api/iav_api.rb', line 27 def create_iav_using_post(iav_request_co, opts = {}) data, _status_code, _headers = create_iav_using_post_with_http_info(iav_request_co, opts) data end |
#create_iav_using_post_with_http_info(iav_request_co, opts = {}) ⇒ Array<(IavResponseVo, Fixnum, Hash)>
Instant Account Verification of an account. Endpoint is used to verify account.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/integration_api/api/iav_api.rb', line 37 def create_iav_using_post_with_http_info(iav_request_co, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IAVApi.create_iav_using_post ...' end # verify the required parameter 'iav_request_co' is set if @api_client.config.client_side_validation && iav_request_co.nil? fail ArgumentError, "Missing the required parameter 'iav_request_co' when calling IAVApi.create_iav_using_post" end # resource path local_var_path = '/iav' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['*/*']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(iav_request_co) auth_names = ['oauth2'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'IavResponseVo') if @api_client.config.debugging @api_client.config.logger.debug "API called: IAVApi#create_iav_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_iav_using_get(nucleus_bank_link_id, opts = {}) ⇒ IavResponseVo
Get verified account based on id. Get verified account based on id.
81 82 83 84 |
# File 'lib/integration_api/api/iav_api.rb', line 81 def get_iav_using_get(nucleus_bank_link_id, opts = {}) data, _status_code, _headers = get_iav_using_get_with_http_info(nucleus_bank_link_id, opts) data end |
#get_iav_using_get_with_http_info(nucleus_bank_link_id, opts = {}) ⇒ Array<(IavResponseVo, Fixnum, Hash)>
Get verified account based on id. Get verified account based on id.
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/integration_api/api/iav_api.rb', line 91 def get_iav_using_get_with_http_info(nucleus_bank_link_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IAVApi.get_iav_using_get ...' end # verify the required parameter 'nucleus_bank_link_id' is set if @api_client.config.client_side_validation && nucleus_bank_link_id.nil? fail ArgumentError, "Missing the required parameter 'nucleus_bank_link_id' when calling IAVApi.get_iav_using_get" end # resource path local_var_path = '/iav/{nucleus_bank_link_id}'.sub('{' + 'nucleus_bank_link_id' + '}', nucleus_bank_link_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['oauth2'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'IavResponseVo') if @api_client.config.debugging @api_client.config.logger.debug "API called: IAVApi#get_iav_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |