Class: Intrinio::FilingApi
- Inherits:
-
Object
- Object
- Intrinio::FilingApi
- Defined in:
- lib/intrinio-sdk/api/filing_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_all_filings(company, opts = {}) ⇒ ApiResponseFilings
All Filings Returns all Filings.
-
#get_all_filings_with_http_info(company, opts = {}) ⇒ Array<(ApiResponseFilings, Fixnum, Hash)>
All Filings Returns all Filings.
-
#get_all_notes(opts = {}) ⇒ ApiResponseFilingNotes
All Filing Notes Return all Notes from all Filings, most-recent first.
-
#get_all_notes_with_http_info(opts = {}) ⇒ Array<(ApiResponseFilingNotes, Fixnum, Hash)>
All Filing Notes Return all Notes from all Filings, most-recent first.
-
#get_filing_by_id(id, opts = {}) ⇒ Filing
Lookup Filing Returns the Filing with the given ‘identifier`.
-
#get_filing_by_id_with_http_info(id, opts = {}) ⇒ Array<(Filing, Fixnum, Hash)>
Lookup Filing Returns the Filing with the given `identifier`.
-
#get_note(identifier, opts = {}) ⇒ FilingNote
Filing Note by ID.
-
#get_note_html(identifier, opts = {}) ⇒ String
Filing Note HTML.
-
#get_note_html_with_http_info(identifier, opts = {}) ⇒ Array<(String, Fixnum, Hash)>
Filing Note HTML.
-
#get_note_text(identifier, opts = {}) ⇒ String
Filing Note Text.
-
#get_note_text_with_http_info(identifier, opts = {}) ⇒ Array<(String, Fixnum, Hash)>
Filing Note Text.
-
#get_note_with_http_info(identifier, opts = {}) ⇒ Array<(FilingNote, Fixnum, Hash)>
Filing Note by ID.
-
#initialize(api_client = ApiClient.default) ⇒ FilingApi
constructor
A new instance of FilingApi.
-
#search_notes(query, opts = {}) ⇒ ApiResponseFilingNotesSearch
Search Filing Notes Searches for Filing Notes using the ‘query`.
-
#search_notes_with_http_info(query, opts = {}) ⇒ Array<(ApiResponseFilingNotesSearch, Fixnum, Hash)>
Search Filing Notes Searches for Filing Notes using the `query`.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#get_all_filings(company, opts = {}) ⇒ ApiResponseFilings
All Filings Returns all Filings. Returns Filings matching parameters when supplied.
33 34 35 36 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 33 def get_all_filings(company, opts = {}) data, _status_code, _headers = get_all_filings_with_http_info(company, opts) return data end |
#get_all_filings_with_http_info(company, opts = {}) ⇒ Array<(ApiResponseFilings, Fixnum, Hash)>
All Filings Returns all Filings. Returns Filings matching parameters when supplied.
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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 48 def get_all_filings_with_http_info(company, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.get_all_filings ..." end # verify the required parameter 'company' is set if @api_client.config.client_side_validation && company.nil? fail ArgumentError, "Missing the required parameter 'company' when calling FilingApi.get_all_filings" end if @api_client.config.client_side_validation && !opts[:'page_size'].nil? && opts[:'page_size'] > 10000 fail ArgumentError, 'invalid value for "opts[:"page_size"]" when calling FilingApi.get_all_filings, must be smaller than or equal to 10000.' end # resource path local_var_path = "/filings" # query parameters query_params = {} query_params[:'company'] = company query_params[:'report_type'] = opts[:'report_type'] if !opts[:'report_type'].nil? query_params[:'start_date'] = opts[:'start_date'] if !opts[:'start_date'].nil? query_params[:'end_date'] = opts[:'end_date'] if !opts[:'end_date'].nil? query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'next_page'] = opts[:'next_page'] if !opts[:'next_page'].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 = ['ApiKeyAuth'] 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 => 'ApiResponseFilings') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#get_all_filings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_all_notes(opts = {}) ⇒ ApiResponseFilingNotes
All Filing Notes Return all Notes from all Filings, most-recent first. Returns notes matching parameters when supplied.
108 109 110 111 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 108 def get_all_notes(opts = {}) data, _status_code, _headers = get_all_notes_with_http_info(opts) return data end |
#get_all_notes_with_http_info(opts = {}) ⇒ Array<(ApiResponseFilingNotes, Fixnum, Hash)>
All Filing Notes Return all Notes from all Filings, most-recent first. Returns notes matching parameters when supplied.
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 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 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 125 def get_all_notes_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.get_all_notes ..." end if @api_client.config.client_side_validation && opts[:'report_type'] && !['10-Q', '10-K'].include?(opts[:'report_type']) fail ArgumentError, 'invalid value for "report_type", must be one of 10-Q, 10-K' end if @api_client.config.client_side_validation && !opts[:'page_size'].nil? && opts[:'page_size'] > 10000 fail ArgumentError, 'invalid value for "opts[:"page_size"]" when calling FilingApi.get_all_notes, must be smaller than or equal to 10000.' end # resource path local_var_path = "/filings/notes" # query parameters query_params = {} query_params[:'company'] = opts[:'company'] if !opts[:'company'].nil? query_params[:'report_type'] = opts[:'report_type'] if !opts[:'report_type'].nil? query_params[:'filing_start_date'] = opts[:'filing_start_date'] if !opts[:'filing_start_date'].nil? query_params[:'filing_end_date'] = opts[:'filing_end_date'] if !opts[:'filing_end_date'].nil? query_params[:'period_ended_start_date'] = opts[:'period_ended_start_date'] if !opts[:'period_ended_start_date'].nil? query_params[:'period_ended_end_date'] = opts[:'period_ended_end_date'] if !opts[:'period_ended_end_date'].nil? query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'next_page'] = opts[:'next_page'] if !opts[:'next_page'].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 = ['ApiKeyAuth'] 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 => 'ApiResponseFilingNotes') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#get_all_notes\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_filing_by_id(id, opts = {}) ⇒ Filing
Lookup Filing Returns the Filing with the given ‘identifier`
179 180 181 182 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 179 def get_filing_by_id(id, opts = {}) data, _status_code, _headers = get_filing_by_id_with_http_info(id, opts) return data end |
#get_filing_by_id_with_http_info(id, opts = {}) ⇒ Array<(Filing, Fixnum, Hash)>
Lookup Filing Returns the Filing with the given `identifier`
189 190 191 192 193 194 195 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 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 189 def get_filing_by_id_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.get_filing_by_id ..." end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling FilingApi.get_filing_by_id" end # resource path local_var_path = "/filings/{id}".sub('{' + 'id' + '}', 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 = ['ApiKeyAuth'] 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 => 'Filing') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#get_filing_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_note(identifier, opts = {}) ⇒ FilingNote
Filing Note by ID
233 234 235 236 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 233 def get_note(identifier, opts = {}) data, _status_code, _headers = get_note_with_http_info(identifier, opts) return data end |
#get_note_html(identifier, opts = {}) ⇒ String
Filing Note HTML
291 292 293 294 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 291 def get_note_html(identifier, opts = {}) data, _status_code, _headers = get_note_html_with_http_info(identifier, opts) return data end |
#get_note_html_with_http_info(identifier, opts = {}) ⇒ Array<(String, Fixnum, Hash)>
Filing Note HTML
301 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 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 301 def get_note_html_with_http_info(identifier, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.get_note_html ..." end # verify the required parameter 'identifier' is set if @api_client.config.client_side_validation && identifier.nil? fail ArgumentError, "Missing the required parameter 'identifier' when calling FilingApi.get_note_html" end # resource path local_var_path = "/filings/notes/{identifier}/html".sub('{' + 'identifier' + '}', identifier.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain; charset=utf-8']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] 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 => 'String') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#get_note_html\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_note_text(identifier, opts = {}) ⇒ String
Filing Note Text
344 345 346 347 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 344 def get_note_text(identifier, opts = {}) data, _status_code, _headers = get_note_text_with_http_info(identifier, opts) return data end |
#get_note_text_with_http_info(identifier, opts = {}) ⇒ Array<(String, Fixnum, Hash)>
Filing Note Text
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 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 354 def get_note_text_with_http_info(identifier, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.get_note_text ..." end # verify the required parameter 'identifier' is set if @api_client.config.client_side_validation && identifier.nil? fail ArgumentError, "Missing the required parameter 'identifier' when calling FilingApi.get_note_text" end # resource path local_var_path = "/filings/notes/{identifier}/text".sub('{' + 'identifier' + '}', identifier.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain; charset=utf-8']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] 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 => 'String') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#get_note_text\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_note_with_http_info(identifier, opts = {}) ⇒ Array<(FilingNote, Fixnum, Hash)>
Filing Note by ID
244 245 246 247 248 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 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 244 def get_note_with_http_info(identifier, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.get_note ..." end # verify the required parameter 'identifier' is set if @api_client.config.client_side_validation && identifier.nil? fail ArgumentError, "Missing the required parameter 'identifier' when calling FilingApi.get_note" end if @api_client.config.client_side_validation && opts[:'content_format'] && !['text', 'html'].include?(opts[:'content_format']) fail ArgumentError, 'invalid value for "content_format", must be one of text, html' end # resource path local_var_path = "/filings/notes/{identifier}".sub('{' + 'identifier' + '}', identifier.to_s) # query parameters query_params = {} query_params[:'content_format'] = opts[:'content_format'] if !opts[:'content_format'].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 = ['ApiKeyAuth'] 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 => 'FilingNote') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#get_note\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#search_notes(query, opts = {}) ⇒ ApiResponseFilingNotesSearch
Search Filing Notes Searches for Filing Notes using the ‘query`
401 402 403 404 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 401 def search_notes(query, opts = {}) data, _status_code, _headers = search_notes_with_http_info(query, opts) return data end |
#search_notes_with_http_info(query, opts = {}) ⇒ Array<(ApiResponseFilingNotesSearch, Fixnum, Hash)>
Search Filing Notes Searches for Filing Notes using the `query`
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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 |
# File 'lib/intrinio-sdk/api/filing_api.rb', line 415 def search_notes_with_http_info(query, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FilingApi.search_notes ..." end # verify the required parameter 'query' is set if @api_client.config.client_side_validation && query.nil? fail ArgumentError, "Missing the required parameter 'query' when calling FilingApi.search_notes" end if @api_client.config.client_side_validation && !opts[:'page_size'].nil? && opts[:'page_size'] > 1000 fail ArgumentError, 'invalid value for "opts[:"page_size"]" when calling FilingApi.search_notes, must be smaller than or equal to 1000.' end if @api_client.config.client_side_validation && !opts[:'page_size2'].nil? && opts[:'page_size2'] > 10000 fail ArgumentError, 'invalid value for "opts[:"page_size2"]" when calling FilingApi.search_notes, must be smaller than or equal to 10000.' end # resource path local_var_path = "/filings/notes/search" # query parameters query_params = {} query_params[:'query'] = query query_params[:'filing_start_date'] = opts[:'filing_start_date'] if !opts[:'filing_start_date'].nil? query_params[:'filing_end_date'] = opts[:'filing_end_date'] if !opts[:'filing_end_date'].nil? query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'page_size'] = opts[:'page_size2'] if !opts[:'page_size2'].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 = ['ApiKeyAuth'] 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 => 'ApiResponseFilingNotesSearch') if @api_client.config.debugging @api_client.config.logger.debug "API called: FilingApi#search_notes\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |