Class: IntegrationApi::AggregationApi

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ AggregationApi

Returns a new instance of AggregationApi.



19
20
21
# File 'lib/integration_api/api/aggregation_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/aggregation_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#create_aggregation_account_using_post(aggregation_request_object, opts = {}) ⇒ AggregationAccountsResponseVO

Create mapping between client,vendor,tenant Create mapping between client,vendor,tenant

Parameters:

  • aggregation_request_object

    aggregationRequestObject

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

    the optional parameters

Returns:



27
28
29
30
# File 'lib/integration_api/api/aggregation_api.rb', line 27

def (aggregation_request_object, opts = {})
  data, _status_code, _headers = (aggregation_request_object, opts)
  data
end

#create_aggregation_account_using_post_with_http_info(aggregation_request_object, opts = {}) ⇒ Array<(AggregationAccountsResponseVO, Fixnum, Hash)>

Create mapping between client,vendor,tenant Create mapping between client,vendor,tenant

Parameters:

  • aggregation_request_object

    aggregationRequestObject

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

    the optional parameters

Returns:



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/aggregation_api.rb', line 37

def (aggregation_request_object, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.create_aggregation_account_using_post ...'
  end
  # verify the required parameter 'aggregation_request_object' is set
  if @api_client.config.client_side_validation && aggregation_request_object.nil?
    fail ArgumentError, "Missing the required parameter 'aggregation_request_object' when calling AggregationApi.create_aggregation_account_using_post"
  end
  # resource path
  local_var_path = '/aggregation/account'

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # 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(aggregation_request_object)
  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 => 'AggregationAccountsResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#create_aggregation_account_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#delete_aggregation_account_using_delete(nucleus_aggregation_account_id, opts = {}) ⇒ nil

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

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_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/aggregation_api.rb', line 83

def (, opts = {})
  (, opts)
  nil
end

#delete_aggregation_account_using_delete_with_http_info(nucleus_aggregation_account_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>

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

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_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/aggregation_api.rb', line 95

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.delete_aggregation_account_using_delete ...'
  end
  # verify the required parameter 'nucleus_aggregation_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_aggregation_account_id' when calling AggregationApi.delete_aggregation_account_using_delete"
  end
  # resource path
  local_var_path = '/aggregation/account/{nucleus_aggregation_account_id}'.sub('{' + 'nucleus_aggregation_account_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: AggregationApi#delete_aggregation_account_using_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_all_using_get(aggregation_account_id_list, opts = {}) ⇒ Array<AggregationAccountResponseVO>

Fetch all aggregation account(s) details with the mapping created in POST endpoint for a client Fetch all aggregation account(s) details with the mapping created in POST endpoint for a client

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



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

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_all_using_get_with_http_info(aggregation_account_id_list, opts = {}) ⇒ Array<(Array<AggregationAccountResponseVO>, Fixnum, Hash)>

Fetch all aggregation account(s) details with the mapping created in POST endpoint for a client Fetch all aggregation account(s) details with the mapping created in POST endpoint for a client

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:

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

    Array<AggregationAccountResponseVO> 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
185
# File 'lib/integration_api/api/aggregation_api.rb', line 148

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_all_using_get ...'
  end
  # verify the required parameter 'aggregation_account_id_list' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'aggregation_account_id_list' when calling AggregationApi.get_aggregation_account_all_using_get"
  end
  # resource path
  local_var_path = '/aggregation/account?aggregation_account_id_list=' + .join(",")

  # query parameters
  query_params = {}
  # query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(aggregation_account_id_list, :multi)

  # 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( :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 => 'Array<AggregationAccountResponseVO>')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_balance_all_using_get(aggregation_account_id_list, opts = {}) ⇒ Array<AggregationAccountBalanceResponseVO>

Fetch all aggregation account balance details with for the given aggregation accounts Fetch all aggregation account balance details with for the given aggregation accounts

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



191
192
193
194
# File 'lib/integration_api/api/aggregation_api.rb', line 191

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_balance_all_using_get_with_http_info(aggregation_account_id_list, opts = {}) ⇒ Array<(Array<AggregationAccountBalanceResponseVO>, Fixnum, Hash)>

Fetch all aggregation account balance details with for the given aggregation accounts Fetch all aggregation account balance details with for the given aggregation accounts

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# File 'lib/integration_api/api/aggregation_api.rb', line 201

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_balance_all_using_get ...'
  end
  # verify the required parameter 'aggregation_account_id_list' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'aggregation_account_id_list' when calling AggregationApi.get_aggregation_account_balance_all_using_get"
  end
  # resource path
  local_var_path = '/aggregation/balance?aggregation_account_id_list=' + .join(",")

  # query parameters
  query_params = {}
  # query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(aggregation_account_id_list, :multi)

  # 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(: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 => 'Array<AggregationAccountBalanceResponseVO>')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_balance_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_balance_using_get(nucleus_aggregation_account_id, opts = {}) ⇒ AggregationAccountBalanceResponseVO

Fetch aggregation account balance details with the mapping created in POST endpoint Fetch aggregation account balance details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



244
245
246
247
# File 'lib/integration_api/api/aggregation_api.rb', line 244

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_balance_using_get_with_http_info(nucleus_aggregation_account_id, opts = {}) ⇒ Array<(AggregationAccountBalanceResponseVO, Fixnum, Hash)>

Fetch aggregation account balance details with the mapping created in POST endpoint Fetch aggregation account balance details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/integration_api/api/aggregation_api.rb', line 254

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_balance_using_get ...'
  end
  # verify the required parameter 'nucleus_aggregation_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_aggregation_account_id' when calling AggregationApi.get_aggregation_account_balance_using_get"
  end
  # resource path
  local_var_path = '/aggregation/balance/{nucleus_aggregation_account_id}'.sub('{' + 'nucleus_aggregation_account_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 => 'AggregationAccountBalanceResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_balance_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_holding_all_using_get(aggregation_account_id_list, opts = {}) ⇒ Array<AggregationAccountHoldingResponseVO>

Fetch all aggregation account(s) holding details with the mapping created in POST endpoint Fetch all aggregation account(s) holding details with the mapping created in POST endpoint

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



296
297
298
299
# File 'lib/integration_api/api/aggregation_api.rb', line 296

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_holding_all_using_get_with_http_info(aggregation_account_id_list, opts = {}) ⇒ Array<(Array<AggregationAccountHoldingResponseVO>, Fixnum, Hash)>

Fetch all aggregation account(s) holding details with the mapping created in POST endpoint Fetch all aggregation account(s) holding details with the mapping created in POST endpoint

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
# File 'lib/integration_api/api/aggregation_api.rb', line 306

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_holding_all_using_get ...'
  end
  # verify the required parameter 'aggregation_account_id_list' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'aggregation_account_id_list' when calling AggregationApi.get_aggregation_account_holding_all_using_get"
  end
  # resource path
  local_var_path = '/aggregation/holding?aggregation_account_id_list=' + .join(",")

  # query parameters
  query_params = {}
  # query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(aggregation_account_id_list, :multi)

  # 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(: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 => 'Array<AggregationAccountHoldingResponseVO>')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_holding_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_holding_using_get(nucleus_aggregation_account_id, opts = {}) ⇒ AggregationAccountHoldingResponseVO

Fetch aggregation account holding details with the mapping created in POST endpoint Fetch aggregation account holding details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



349
350
351
352
# File 'lib/integration_api/api/aggregation_api.rb', line 349

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_holding_using_get_with_http_info(nucleus_aggregation_account_id, opts = {}) ⇒ Array<(AggregationAccountHoldingResponseVO, Fixnum, Hash)>

Fetch aggregation account holding details with the mapping created in POST endpoint Fetch aggregation account holding details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
# File 'lib/integration_api/api/aggregation_api.rb', line 359

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_holding_using_get ...'
  end
  # verify the required parameter 'nucleus_aggregation_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_aggregation_account_id' when calling AggregationApi.get_aggregation_account_holding_using_get"
  end
  # resource path
  local_var_path = '/aggregation/holding/{nucleus_aggregation_account_id}'.sub('{' + 'nucleus_aggregation_account_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 => 'AggregationAccountHoldingResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_holding_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_transaction_all_using_get(aggregation_account_id_list, opts = {}) ⇒ Array<AggregationAccountTransactionResponseVO>

Fetch all aggregation account balance details with for the given aggregation accounts Fetch all aggregation account balance details with for the given aggregation accounts

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



401
402
403
404
# File 'lib/integration_api/api/aggregation_api.rb', line 401

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_transaction_all_using_get_with_http_info(aggregation_account_id_list, opts = {}) ⇒ Array<(Array<AggregationAccountTransactionResponseVO>, Fixnum, Hash)>

Fetch all aggregation account balance details with for the given aggregation accounts Fetch all aggregation account balance details with for the given aggregation accounts

Parameters:

  • aggregation_account_id_list

    aggregation_account_id_list

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

    the optional parameters

Returns:



411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
# File 'lib/integration_api/api/aggregation_api.rb', line 411

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_transaction_all_using_get ...'
  end
  # verify the required parameter 'aggregation_account_id_list' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'aggregation_account_id_list' when calling AggregationApi.get_aggregation_account_transaction_all_using_get"
  end
  # resource path
  local_var_path = '/aggregation/transaction?aggregation_account_id_list=' + .join(",")

  # query parameters
  query_params = {}
  # query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(aggregation_account_id_list, :multi)

  # 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(: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 => 'Array<AggregationAccountTransactionResponseVO>')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_transaction_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_transaction_using_get(nucleus_aggregation_account_id, opts = {}) ⇒ AggregationAccountTransactionResponseVO

Fetch aggregation account transaction details with the mapping created in POST endpoint Fetch aggregation account transaction details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



454
455
456
457
# File 'lib/integration_api/api/aggregation_api.rb', line 454

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_transaction_using_get_with_http_info(nucleus_aggregation_account_id, opts = {}) ⇒ Array<(AggregationAccountTransactionResponseVO, Fixnum, Hash)>

Fetch aggregation account transaction details with the mapping created in POST endpoint Fetch aggregation account transaction details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
# File 'lib/integration_api/api/aggregation_api.rb', line 464

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_transaction_using_get ...'
  end
  # verify the required parameter 'nucleus_aggregation_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_aggregation_account_id' when calling AggregationApi.get_aggregation_account_transaction_using_get"
  end
  # resource path
  local_var_path = '/aggregation/transaction/{nucleus_aggregation_account_id}'.sub('{' + 'nucleus_aggregation_account_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 => 'AggregationAccountTransactionResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_transaction_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_aggregation_account_using_get(nucleus_aggregation_account_id, opts = {}) ⇒ AggregationAccountResponseVO

Fetch aggregation account details with the mapping created in POST endpoint Fetch aggregation account details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



506
507
508
509
# File 'lib/integration_api/api/aggregation_api.rb', line 506

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_aggregation_account_using_get_with_http_info(nucleus_aggregation_account_id, opts = {}) ⇒ Array<(AggregationAccountResponseVO, Fixnum, Hash)>

Fetch aggregation account details with the mapping created in POST endpoint Fetch aggregation account details with the mapping created in POST endpoint

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Returns:



516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
# File 'lib/integration_api/api/aggregation_api.rb', line 516

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_aggregation_account_using_get ...'
  end
  # verify the required parameter 'nucleus_aggregation_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_aggregation_account_id' when calling AggregationApi.get_aggregation_account_using_get"
  end
  # resource path
  local_var_path = '/aggregation/account/{nucleus_aggregation_account_id}'.sub('{' + 'nucleus_aggregation_account_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 => 'AggregationAccountResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_aggregation_account_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_property_value(nucleus_aggregation_account_id, opts = {}) ⇒ PropertyValueResponseVO

Get Value of the given property Get Value of the given property

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Options Hash (opts):

  • :nucleus_business_id (String)

    nucleus_business_id

  • :nucleus_client_id (String)

    nucleus_client_id

  • :product (String)

    product (default to atom)

Returns:



561
562
563
564
# File 'lib/integration_api/api/aggregation_api.rb', line 561

def get_property_value(, opts = {})
  data, _status_code, _headers = get_property_value_with_http_info(, opts)
  data
end

#get_property_value_with_http_info(nucleus_aggregation_account_id, opts = {}) ⇒ Array<(PropertyValueResponseVO, Fixnum, Hash)>

Get Value of the given property Get Value of the given property

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

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

    the optional parameters

Options Hash (opts):

  • :nucleus_business_id (String)

    nucleus_business_id

  • :nucleus_client_id (String)

    nucleus_client_id

  • :product (String)

    product

Returns:

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

    PropertyValueResponseVO data, response status code and response headers



574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
# File 'lib/integration_api/api/aggregation_api.rb', line 574

def get_property_value_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.get_property_value ...'
  end
  # verify the required parameter 'nucleus_aggregation_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_aggregation_account_id' when calling AggregationApi.get_property_value"
  end
  # resource path
  local_var_path = '/property_value'

  # query parameters
  query_params = {}
  query_params[:'nucleus_aggregation_account_id'] = 
  query_params[:'nucleus_business_id'] = opts[:'nucleus_business_id'] if !opts[:'nucleus_business_id'].nil?
  query_params[:'nucleus_client_id'] = opts[:'nucleus_client_id'] if !opts[:'nucleus_client_id'].nil?
  query_params[:'product'] = opts[:'product'] if !opts[:'product'].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(: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 => 'PropertyValueResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#get_property_value\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end