Skip to content

Commit 6fc6393

Browse files
No release notes for this build
1 parent e19c9f0 commit 6fc6393

14 files changed

+373
-337
lines changed

docs/CompanyApi.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -881,8 +881,8 @@ namespace Example
881881

882882
var companyApi = new CompanyApi();
883883

884-
string identifier = "$$v2_company_data_point_identifier_default$$";
885-
string tag = "$$v2_company_data_point_item_number_default$$";
884+
string identifier = "AAPL";
885+
string tag = "marketcap";
886886

887887
decimal? result = companyApi.GetCompanyDataPointNumber(identifier, tag);
888888
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
@@ -900,8 +900,8 @@ namespace Example
900900

901901
Name | Type | Description | Notes
902902
------------- | ------------- | ------------- | -------------
903-
**identifier** | string| $$v2_company_data_point_identifier_description$$ |  
904-
**tag** | string| $$v2_company_data_point_item_description$$ |  
903+
**identifier** | string| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |  
904+
**tag** | string| An Intrinio data tag ID or code (<a href='https://data.intrinio.com/data-tags'>reference</a>) |  
905905
<br/>
906906

907907
[//]: # (END_PARAMETERS)
@@ -971,8 +971,8 @@ namespace Example
971971

972972
var companyApi = new CompanyApi();
973973

974-
string identifier = "$$v2_company_data_point_identifier_default$$";
975-
string tag = "$$v2_company_data_point_item_text_default$$";
974+
string identifier = "AAPL";
975+
string tag = "ceo";
976976

977977
string result = companyApi.GetCompanyDataPointText(identifier, tag);
978978
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
@@ -990,8 +990,8 @@ namespace Example
990990

991991
Name | Type | Description | Notes
992992
------------- | ------------- | ------------- | -------------
993-
**identifier** | string| $$v2_company_data_point_identifier_description$$ | &nbsp;
994-
**tag** | string| $$v2_company_data_point_item_description$$ | &nbsp;
993+
**identifier** | string| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | &nbsp;
994+
**tag** | string| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
995995
<br/>
996996

997997
[//]: # (END_PARAMETERS)
@@ -1248,7 +1248,7 @@ Name | Type | Description | Notes
12481248
12491249
#### Historical Data for Company
12501250

1251-
$$v2_company_historical_data_description$$
1251+
Returns historical values for the given `tag` and the Company with the given `identifier`
12521252

12531253
[//]: # (END_OVERVIEW)
12541254

@@ -1277,8 +1277,8 @@ namespace Example
12771277

12781278
var companyApi = new CompanyApi();
12791279

1280-
string identifier = "$$v2_company_historical_data_identifier_default$$";
1281-
string tag = "$$v2_company_historical_data_item_default$$";
1280+
string identifier = "AAPL";
1281+
string tag = "marketcap";
12821282
string frequency = "daily";
12831283
string type = null;
12841284
DateTime? startDate = DateTime.Parse("2018-01-01");
@@ -1303,8 +1303,8 @@ namespace Example
13031303

13041304
Name | Type | Description | Notes
13051305
------------- | ------------- | ------------- | -------------
1306-
**identifier** | string| $$v2_company_historical_data_identifier_description$$ | &nbsp;
1307-
**tag** | string| $$v2_company_historical_data_item_description$$ | &nbsp;
1306+
**identifier** | string| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | &nbsp;
1307+
**tag** | string| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
13081308
**frequency** | string| Return historical data in the given frequency | [optional] [default to daily] &nbsp;
13091309
**type** | string| Return historical data for given fiscal period type | [optional] &nbsp;
13101310
**startDate** | DateTime?| Return historical data on or after this date | [optional] &nbsp;

docs/DataPointApi.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Method | HTTP request | Description
3838
3939
#### Data Point (Number)
4040

41-
$$v2_data_point_number_description$$
41+
Returns a numeric value for the given `tag` and the entity with the given `identifier`
4242

4343
[//]: # (END_OVERVIEW)
4444

@@ -67,8 +67,8 @@ namespace Example
6767

6868
var dataPointApi = new DataPointApi();
6969

70-
string identifier = "$$v2_data_point_identifier_default$$";
71-
string tag = "$$v2_data_point_item_number_default$$";
70+
string identifier = "AAPL";
71+
string tag = "marketcap";
7272

7373
decimal? result = dataPointApi.GetDataPointNumber(identifier, tag);
7474
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
@@ -86,8 +86,8 @@ namespace Example
8686

8787
Name | Type | Description | Notes
8888
------------- | ------------- | ------------- | -------------
89-
**identifier** | string| $$v2_data_point_identifier_description$$ | &nbsp;
90-
**tag** | string| $$v2_data_point_item_description$$ | &nbsp;
89+
**identifier** | string| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
90+
**tag** | string| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
9191
<br/>
9292

9393
[//]: # (END_PARAMETERS)
@@ -128,7 +128,7 @@ Name | Type | Description | Notes
128128
129129
#### Data Point (Text)
130130

131-
$$v2_data_point_text_description$$
131+
Returns a text value for the given `tag` for the Security with the given `identifier`
132132

133133
[//]: # (END_OVERVIEW)
134134

@@ -157,8 +157,8 @@ namespace Example
157157

158158
var dataPointApi = new DataPointApi();
159159

160-
string identifier = "$$v2_data_point_identifier_default$$";
161-
string tag = "$$v2_data_point_item_text_default$$";
160+
string identifier = "AAPL";
161+
string tag = "ceo";
162162

163163
string result = dataPointApi.GetDataPointText(identifier, tag);
164164
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
@@ -176,8 +176,8 @@ namespace Example
176176

177177
Name | Type | Description | Notes
178178
------------- | ------------- | ------------- | -------------
179-
**identifier** | string| $$v2_data_point_identifier_description$$ | &nbsp;
180-
**tag** | string| $$v2_data_point_item_description$$ | &nbsp;
179+
**identifier** | string| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
180+
**tag** | string| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
181181
<br/>
182182

183183
[//]: # (END_PARAMETERS)

docs/FundamentalsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ namespace Example
448448
var fundamentalsApi = new FundamentalsApi();
449449

450450
string id = "AAPL-income_statement-2020-FY";
451-
string tag = "$$v2_data_point_item_text_default$$";
451+
string tag = "ceo";
452452

453453
ApiResponseStandardizedFinancialsDimensions result = fundamentalsApi.GetFundamentalStandardizedFinancialsDimensions(id, tag);
454454
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
@@ -467,7 +467,7 @@ namespace Example
467467
Name | Type | Description | Notes
468468
------------- | ------------- | ------------- | -------------
469469
**id** | string| The Intrinio ID or lookup code (ticker-statement-year-period) for the Fundamental | &nbsp;
470-
**tag** | string| $$v2_data_point_item_description$$ | &nbsp;
470+
**tag** | string| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
471471
<br/>
472472

473473
[//]: # (END_PARAMETERS)

docs/HistoricalDataApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Method | HTTP request | Description
3737
3838
#### Historical Data
3939

40-
$$v2_historical_data_description$$
40+
Returns historical values for the given `tag` and the entity represented by the given `identifier`
4141

4242
[//]: # (END_OVERVIEW)
4343

@@ -66,8 +66,8 @@ namespace Example
6666

6767
var historicalDataApi = new HistoricalDataApi();
6868

69-
string identifier = "$$v2_historical_data_identifier_default$$";
70-
string tag = "$$v2_historical_data_item_default$$";
69+
string identifier = "AAPL";
70+
string tag = "marketcap";
7171
string frequency = "daily";
7272
string type = null;
7373
DateTime? startDate = DateTime.Parse("2015-01-01");
@@ -92,8 +92,8 @@ namespace Example
9292

9393
Name | Type | Description | Notes
9494
------------- | ------------- | ------------- | -------------
95-
**identifier** | string| $$v2_historical_data_identifier_description$$ | &nbsp;
96-
**tag** | string| $$v2_historical_data_item_description$$ | &nbsp;
95+
**identifier** | string| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
96+
**tag** | string| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
9797
**frequency** | string| Return historical data in the given frequency | [optional] [default to daily] &nbsp;
9898
**type** | string| Filter by type, when applicable | [optional] &nbsp;
9999
**startDate** | DateTime?| Get historical data on or after this date | [optional] &nbsp;

0 commit comments

Comments
 (0)