This following code in C# was working fine to fetch news release stories up until 2 days ago.
headlineID = "nGNX6zsGB6";
string storyID = "urn:newsml:reuters.com:" + DateTime.Now.ToString("yyyyMMdd") + ":" + headlineID + ":1";
var story = Story.Definition(storyID).GetData();
story.IsSuccess used to return True, and story.Data.NewsStory used to return the news article. As of 2 days ago, story.IsSuccess is returning True, but I'm getting the following returned as the story.Data object, with NewsStory being null. What is going on here?
{
"Data": {
"NewsStory": null,
"HtmlNewsStory": null,
"Creators": [
"NS:GNW"
],
"Urgency": 0
}
}