Get Delivery References
Briefing
Get Delivery References
Retrieves the full list of citation references (sources) used to generate a briefing delivery.
Briefing email content includes inline citations [N] that point into this list via citation_idx. Use this endpoint to build custom UIs, export source lists, or link readers back to original documents.
Usage Flow:
- Get a delivery via List Deliveries or Get Delivery Detail — note the
chat_session_id - Verify delivery status is
sent - Call this endpoint with
delivery_id - For each reference, dispatch on
search_typeto build the viewer URL (see below)
How to view original documents (switch on search_type):
external/news— the reference already links to the source. Useexternal_urldirectly (Factset viewer URL for news, publisher URL for external).tfs(transcripts & filings) — open in the LinqAlpha document viewer:https://chat.linqalpha.com/documents/{document_id}. To download the raw file, passdocument_idto the Presigned URL endpoint.rms(internal research, RMS-connected organizations) — open in the RMS viewer:https://chat.linqalpha.com/rms/viewer?conversation_id={chat_session_id}&citation_idx={citation_idx}.chat_session_idcomes from the delivery detail response.
Error codes (returned in response body with HTTP 200):
BRIEFING_DELIVERY_NOT_FOUND—delivery_iddoes not exist or does not belong to your organizationBRIEFING_DELIVERY_REFERENCES_NOT_AVAILABLE— delivery exists but has no associated session (still pending or generation failed)GET_SESSION_REFERENCES_FAIL— upstream fetch failed
GET
Get Delivery References
Retrieves the citation references (sources) used to generate a briefing delivery. Briefing email content embeds inline citations
[N] that point into this list via citation_idx.
References become available once the delivery status is sent. Call Get Delivery Detail first to confirm status and to grab the chat_session_id (required for building RMS viewer URLs).