Have been circling back to this and now getting a plethora of 403 errors for subscription entitlements on things that were drawing correctly before. Any idea who can assist here?My authentication is working correctly (getting HTTP 200 responses), but I'm receiving zero data from deal queries.
Examples:
Example 1 - Basic Deal Access:
Query: SCREEN(U(IN(DEALS)),TOP(5)) Fields: TR.NIIssuer
Expected Result: List of 5 company names from recent deals
Current Result: Only header row, no data rows
Example 2 - ECM-Specific Access:
Query: SCREEN(U(IN(DEALS)),TR.NIisECM=True,TOP(5)) Fields: TR.NIIssuer, TR.NIIssueDate, TR.NIProceedsAmtAllMkts
Expected Result: 5 ECM deals with company, date, and deal value
Current Result: Only header row, no data rows
Example 3 - Deal Manager Access:
Query: SCREEN(U(IN(DEALS)),TOP(5)) Fields: TR.NIIssuer, TR.NIManagers
Expected Result: Companies and their investment banking syndicates
Current Result: Only header row, no data rows
My authentication works (HTTP 200), but all three queries above return only header rows with zero data rows. I need these examples to work for ECM competitive analysis. Not certain why its giving a 403 error now, these draws were working a few days ago.
We've isolated the issue with our data access. Our LSEG Workspace authentication works and we can access company/equity data, but we have zero access to deal transaction data.
Technical Evidence:
- Working: Direct ticker queries (AAPL.O, MSFT.O) return company data and revenue
- Working: Company fields like TR.CompanyName, TR.Revenue
- NOT Working: Any DEALS universe queries return 0 rows
- NOT Working: All screeners using
SCREEN(U(IN(DEALS)))
format
Specific Test Results:
AAPL.O,MSFT.O
with TR.CompanyName: ✅ Works (2 rows)MSFT.O
with TR.Revenue: ✅ Works ($281.7B)SCREEN(U(IN(DEALS)),TOP(1000))
: ❌ 0 rowsSCREEN(U(NewIssues),TOP(10))
: ❌ 0 rows- All deal-related universes: ❌ 0 rows
API Endpoint: POST
http://localhost:9000/api/v1/data
Let us know how to best proceed