Hello,
I'm using C# NuGet package "Refinitiv.Data.Content" to communicate with Refinitiv Workspace API.
When I request some fields for the funds I've got an error: The access to field(s) denied. But I can see the values of these fields in the Refinitiv Workspace application. I've tried to use PlatformSession and DesktopSession. There is no difference.
For example:
RIC: HGT.L
Field: TR.FundPortfolioManager
My code:
IDataSetResponse response = FundamentalAndReference
.Definition()
.Universe("HGT.L")
.Fields("TR.FundPortfolioManager")
.GetData();
Server answer:
{
"error": {
"code": 221,
"description": "The access to field(s) denied."
}
}
How can I take an access ti these fields?