Class: MergeHRISClient::LinkedAccountsApi
- Inherits:
-
Object
- Object
- MergeHRISClient::LinkedAccountsApi
- Defined in:
- lib/merge_hris_client/api/linked_accounts_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#initialize(api_client = ApiClient.default) ⇒ LinkedAccountsApi
constructor
A new instance of LinkedAccountsApi.
-
#linked_accounts_list(opts = {}) ⇒ PaginatedAccountDetailsAndActionsList
List linked accounts for your organization.
-
#linked_accounts_list_with_http_info(opts = {}) ⇒ Array<(PaginatedAccountDetailsAndActionsList, Integer, Hash)>
List linked accounts for your organization.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ LinkedAccountsApi
Returns a new instance of LinkedAccountsApi.
19 20 21 |
# File 'lib/merge_hris_client/api/linked_accounts_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/merge_hris_client/api/linked_accounts_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#linked_accounts_list(opts = {}) ⇒ PaginatedAccountDetailsAndActionsList
List linked accounts for your organization.
38 39 40 41 |
# File 'lib/merge_hris_client/api/linked_accounts_api.rb', line 38 def linked_accounts_list(opts = {}) data, _status_code, _headers = linked_accounts_list_with_http_info(opts) data end |
#linked_accounts_list_with_http_info(opts = {}) ⇒ Array<(PaginatedAccountDetailsAndActionsList, Integer, Hash)>
List linked accounts for your organization.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 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 |
# File 'lib/merge_hris_client/api/linked_accounts_api.rb', line 59 def linked_accounts_list_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: LinkedAccountsApi.linked_accounts_list ...' end allowable_values = ["accounting", "ats", "crm", "datawarehouse", "filestorage", "hris", "mktg", "ticketing"] if @api_client.config.client_side_validation && opts[:'category'] && !allowable_values.include?(opts[:'category']) fail ArgumentError, "invalid value for \"category\", must be one of #{allowable_values}" end # resource path local_var_path = '/linked-accounts' # query parameters query_params = opts[:query_params] || {} query_params[:'category'] = opts[:'category'] if !opts[:'category'].nil? query_params[:'cursor'] = opts[:'cursor'] if !opts[:'cursor'].nil? query_params[:'end_user_email_address'] = opts[:'end_user_email_address'] if !opts[:'end_user_email_address'].nil? query_params[:'end_user_organization_name'] = opts[:'end_user_organization_name'] if !opts[:'end_user_organization_name'].nil? query_params[:'end_user_origin_id'] = opts[:'end_user_origin_id'] if !opts[:'end_user_origin_id'].nil? query_params[:'end_user_origin_ids'] = opts[:'end_user_origin_ids'] if !opts[:'end_user_origin_ids'].nil? query_params[:'id'] = opts[:'id'] if !opts[:'id'].nil? query_params[:'ids'] = opts[:'ids'] if !opts[:'ids'].nil? query_params[:'include_duplicates'] = opts[:'include_duplicates'] if !opts[:'include_duplicates'].nil? query_params[:'integration_name'] = opts[:'integration_name'] if !opts[:'integration_name'].nil? query_params[:'is_test_account'] = opts[:'is_test_account'] if !opts[:'is_test_account'].nil? query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'status'] = opts[:'status'] if !opts[:'status'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'PaginatedAccountDetailsAndActionsList' # auth_names auth_names = opts[:debug_auth_names] || ['tokenAuth'] = opts.merge( :operation => :"LinkedAccountsApi.linked_accounts_list", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: LinkedAccountsApi#linked_accounts_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |