News Article Body

News Article Body Csharp API Documentation

Returns the body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details.

API Class:
Intrinio.SDK.Api.CompanyApi
Instance Method:
GetCompanyNewsBody()

Stock Price Code Example

Use my API Key
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetCompanyNewsBodyExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var companyApi = new CompanyApi();
string newsStoryId = "new_aBcDef";
DateTime? publicationDate = null;
string specificSource = null;
string nextPage = null;
ApiResponseCompanyNewsBody result = companyApi.GetCompanyNewsBody(newsStoryId, publicationDate, specificSource, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
newsStoryIdstringThe identifier of the news story. 
publicationDateDateTime?The DateTime of the story. 
specificSourcestringOnly news from this source. Defaults to highest available if not present.[optional]  
nextPagestringGets the next page of data from a previous API call[optional]  


Return Type

object
Intrinio.SDK.Model.ApiResponseCompanyNewsBody

Properties

NameTypeDescription
BodystringThe article body.