GET insights/exports/{exportId}/shared-access-link

Call this with an exportId provided previously. You will get a download URI which can then be hit to stream the report CSV data.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
exportId The export ID returned from the begin-export endpoint integer Required

Body Parameters

None.

Response Information

Resource Description

Call this with an exportId provided previously. You will get a download URI which can then be hit to stream the report CSV data.

ReportDownloadLink
NameDescriptionTypeAdditional information
ExportId The export ID integer None.
ReportId The report ID integer None.
DownloadUri A time-limited URL to download the CSV export string None.

Response Formats

application/json, text/json

Sample:
{
  "ExportId": 12345,
  "ReportId": 42,
  "DownloadUri": "https://storefeeder-exports.blob.core.windows.net/exports/report-12345.csv?sv=2021-08-06&st=2026-01-16T10:00:00Z&se=2026-01-16T22:00:00Z&sr=b&sp=r&sig=abc123def456"
}

application/xml, text/xml

Sample:
<ReportDownloadLink xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ExportId>12345</ExportId>
  <ReportId>42</ReportId>
  <DownloadUri>https://storefeeder-exports.blob.core.windows.net/exports/report-12345.csv?sv=2021-08-06&amp;st=2026-01-16T10:00:00Z&amp;se=2026-01-16T22:00:00Z&amp;sr=b&amp;sp=r&amp;sig=abc123def456</DownloadUri>
</ReportDownloadLink>