Get Export Results
This provides a download link for a completed search export. Only completed, non expired search exports may be downloaded.
Downloading an export
This endpoint returns a URL that can be temporarily used to download the exported data.You can use curl to get the results from this URL:
curl -JO "[location url provided in response]"
This will save the export to the name provided in the Content-Disposition
header, which is based
on the name of the segment and the date that the export was created.
Additional Information
Path Parameters
id string required
Unique identifier of the search export. This ID is typically retrieved as a result of a SEARCH_EXPORT operation.
Responses
200
A successful response.
Schema
Example
Schema
location string optional
Location provides a URI pointing to the export file. The URI is only valid until expires time.
expires date-time optional
The UTC time at which the location link expires.
{
"location": "https://storage.googleapis.com/fullstoryapp-search-export/erdmyIOWv2WtgEVDugRyYRrvUp8UaJZcpblJxDb29VU?<signature-params>",
"expires": "2020-10-22T17:06:18.658287819Z"
}
Loading...