Class: IntegrationApi::IAVApi

Inherits:
Object
  • Object
show all
Defined in:
lib/integration_api/api/iav_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ IAVApi

Returns a new instance of IAVApi.



19
20
21
# File 'lib/integration_api/api/iav_api.rb', line 19

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

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.

Parameters:

  • iav_request_co

    iavRequestCO

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



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.

Parameters:

  • iav_request_co

    iavRequestCO

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(IavResponseVo, Fixnum, Hash)>)

    IavResponseVo data, response status code and response headers



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

De-Link mapping between client,vendor,tenant De-Link mapping between client,vendor,tenant

Parameters:

  • nucleus_bank_link_id

    nucleus_bank_link_id

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :delete_type (String)

    delete_type (default to delink)

  • :nucleus_data (String)

    nucleus_data

Returns:

  • (nil)


83
84
85
86
# File 'lib/integration_api/api/iav_api.rb', line 83

def delete_bank_link_using_delete(nucleus_bank_link_id, opts = {})
  delete_bank_link_using_delete_with_http_info(nucleus_bank_link_id, opts)
  nil
end

De-Link mapping between client,vendor,tenant De-Link mapping between client,vendor,tenant

Parameters:

  • nucleus_bank_link_id

    nucleus_bank_link_id

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :delete_type (String)

    delete_type

  • :nucleus_data (String)

    nucleus_data

Returns:

  • (Array<(nil, Fixnum, Hash)>)

    nil, response status code and response headers



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
128
129
130
131
132
# File 'lib/integration_api/api/iav_api.rb', line 95

def delete_bank_link_using_delete_with_http_info(nucleus_bank_link_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: IAVApi.delete_bank_link_using_delete ...'
  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.delete_bank_link_using_delete"
  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 = {}
  query_params[:'delete_type'] = opts[:'delete_type'] if !opts[:'delete_type'].nil?
  query_params[:'nucleus_data'] = opts[:'nucleus_data'] if !opts[:'nucleus_data'].nil?

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['oauth2']
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: IAVApi#delete_bank_link_using_delete\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.

Parameters:

  • nucleus_bank_link_id

    nucleus_bank_link_id

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



138
139
140
141
# File 'lib/integration_api/api/iav_api.rb', line 138

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.

Parameters:

  • nucleus_bank_link_id

    nucleus_bank_link_id

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(IavResponseVo, Fixnum, Hash)>)

    IavResponseVo data, response status code and response headers



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/integration_api/api/iav_api.rb', line 148

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