Class: IntegrationApi::KYCApi

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ KYCApi

Returns a new instance of KYCApi.



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

def api_client
  @api_client
end

Instance Method Details

#create_kyc_using_post(kyc_request_co, opts = {}) ⇒ KycResponseVo

Do kyc for the client. Do kyc for the client.

Parameters:

  • kyc_request_co

    kycRequestCO

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

    the optional parameters

Returns:



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

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

#create_kyc_using_post_with_http_info(kyc_request_co, opts = {}) ⇒ Array<(KycResponseVo, Fixnum, Hash)>

Do kyc for the client. Do kyc for the client.

Parameters:

  • kyc_request_co

    kycRequestCO

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

    the optional parameters

Returns:

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

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

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

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

#get_kyc_status_using_get(opts = {}) ⇒ Array<KycResponseVo>

Fetch kyc_status for the given nucleus_client_id Fetch kyc_status for the given nucleus_client_id

Parameters:

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

    the optional parameters

Options Hash (opts):

  • :get_latest (BOOLEAN)

    get_latest (default to false)

  • :kyc_type (String)

    kyc_type (default to all)

  • :nucleus_business_id (String)

    nucleus_business_id

  • :nucleus_client_id (String)

    nucleus_client_id

  • :product (String)

    product (default to atom)

Returns:



85
86
87
88
# File 'lib/integration_api/api/kyc_api.rb', line 85

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

#get_kyc_status_using_get_with_http_info(opts = {}) ⇒ Array<(Array<KycResponseVo>, Fixnum, Hash)>

Fetch kyc_status for the given nucleus_client_id Fetch kyc_status for the given nucleus_client_id

Parameters:

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

    the optional parameters

Options Hash (opts):

  • :get_latest (BOOLEAN)

    get_latest

  • :kyc_type (String)

    kyc_type

  • :nucleus_business_id (String)

    nucleus_business_id

  • :nucleus_client_id (String)

    nucleus_client_id

  • :product (String)

    product

Returns:

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

    Array<KycResponseVo> data, response status code and response headers



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
133
134
135
136
# File 'lib/integration_api/api/kyc_api.rb', line 99

def get_kyc_status_using_get_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: KYCApi.get_kyc_status_using_get ...'
  end
  # resource path
  local_var_path = '/kyc_status'

  # query parameters
  query_params = {}
  query_params[:'get_latest'] = opts[:'get_latest'] if !opts[:'get_latest'].nil?
  query_params[:'kyc_type'] = opts[:'kyc_type'] if !opts[:'kyc_type'].nil?
  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(['*/*'])

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