Class: IntegrationApi::KYCApi
- Inherits:
-
Object
- Object
- IntegrationApi::KYCApi
- Defined in:
- lib/integration_api/api/kyc_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_kyc_using_post(kyc_request_co, opts = {}) ⇒ KycResponseVo
Do kyc for the client.
-
#create_kyc_using_post_with_http_info(kyc_request_co, opts = {}) ⇒ Array<(KycResponseVo, Fixnum, Hash)>
Do kyc for the client.
-
#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.
-
#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.
-
#initialize(api_client = ApiClient.default) ⇒ KYCApi
constructor
A new instance of KYCApi.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
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.
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.
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
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
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 |