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

#create_property_value_using_post(aggregation_request_object, opts = {}) ⇒ PropertyValueResponseVO

Create mapping between client,vendor,tenant for the property Create mapping between client,vendor,tenant for property

Parameters:

  • aggregation_request_object

    aggregationRequestObject

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

    the optional parameters

Returns:



81
82
83
84
# File 'lib/integration_api/api/aggregation_api.rb', line 81

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

#create_property_value_using_post_with_http_info(aggregation_request_object, opts = {}) ⇒ Array<(PropertyValueResponseVO, Fixnum, Hash)>

Create mapping between client,vendor,tenant for the property Create mapping between client,vendor,tenant for property

Parameters:

  • aggregation_request_object

    aggregationRequestObject

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

    the optional parameters

Returns:

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

    PropertyValueResponseVO data, response status code and response headers



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
128
129
# File 'lib/integration_api/api/aggregation_api.rb', line 91

def create_property_value_using_post_with_http_info(aggregation_request_object, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AggregationApi.create_property_value_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_property_value_using_post"
  end
  # resource path
  local_var_path = '/property_value'

  # 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 => 'PropertyValueResponseVO')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AggregationApi#create_property_value_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

Returns:

  • (nil)


135
136
137
138
# File 'lib/integration_api/api/aggregation_api.rb', line 135

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

Returns:

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

    nil, response status code and response headers



145
146
147
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
# File 'lib/integration_api/api/aggregation_api.rb', line 145

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 = {}

  # 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:



186
187
188
189
# File 'lib/integration_api/api/aggregation_api.rb', line 186

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



196
197
198
199
200
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
# File 'lib/integration_api/api/aggregation_api.rb', line 196

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'

  # query parameters
  query_params = {}
  query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(, :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:



239
240
241
242
# File 'lib/integration_api/api/aggregation_api.rb', line 239

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:



249
250
251
252
253
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
# File 'lib/integration_api/api/aggregation_api.rb', line 249

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'

  # query parameters
  query_params = {}
  query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(, :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:



292
293
294
295
# File 'lib/integration_api/api/aggregation_api.rb', line 292

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:



302
303
304
305
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
# File 'lib/integration_api/api/aggregation_api.rb', line 302

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:



344
345
346
347
# File 'lib/integration_api/api/aggregation_api.rb', line 344

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:



354
355
356
357
358
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
# File 'lib/integration_api/api/aggregation_api.rb', line 354

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'

  # query parameters
  query_params = {}
  query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(, :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:



397
398
399
400
# File 'lib/integration_api/api/aggregation_api.rb', line 397

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:



407
408
409
410
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
# File 'lib/integration_api/api/aggregation_api.rb', line 407

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:



449
450
451
452
# File 'lib/integration_api/api/aggregation_api.rb', line 449

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:



459
460
461
462
463
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
# File 'lib/integration_api/api/aggregation_api.rb', line 459

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'

  # query parameters
  query_params = {}
  query_params[:'aggregation_account_id_list'] = @api_client.build_collection_param(, :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:



502
503
504
505
# File 'lib/integration_api/api/aggregation_api.rb', line 502

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:



512
513
514
515
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
# File 'lib/integration_api/api/aggregation_api.rb', line 512

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:



554
555
556
557
# File 'lib/integration_api/api/aggregation_api.rb', line 554

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:



564
565
566
567
568
569
570
571
572
573
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
# File 'lib/integration_api/api/aggregation_api.rb', line 564

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, nucleus_client_id, opts = {}) ⇒ PropertyValueResponseVO

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

Parameters:

  • nucleus_aggregation_account_id

    nucleus_aggregation_account_id

  • nucleus_client_id

    nucleus_client_id

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

    the optional parameters

Options Hash (opts):

  • :product (String)

    product (default to atom)

Returns:



608
609
610
611
# File 'lib/integration_api/api/aggregation_api.rb', line 608

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

#get_property_value_with_http_info(nucleus_aggregation_account_id, nucleus_client_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

  • nucleus_client_id

    nucleus_client_id

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

    the optional parameters

Options Hash (opts):

  • :product (String)

    product

Returns:

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

    PropertyValueResponseVO data, response status code and response headers



620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
# File 'lib/integration_api/api/aggregation_api.rb', line 620

def get_property_value_with_http_info(, nucleus_client_id, 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
  # verify the required parameter 'nucleus_client_id' is set
  if @api_client.config.client_side_validation && nucleus_client_id.nil?
    fail ArgumentError, "Missing the required parameter 'nucleus_client_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_client_id'] = nucleus_client_id
  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