List Event Exports
This endpoint has been deprecated and may be removed in future versions of the API.
Please use the Segment Export API to extract data recorded by FullStory.
Return a list of Data Export bundles
Legacy Data Export
You can download a collection of session events for your own analysis using FullStory's Data Export feature.
The list
endpoint returns a JSON list of completed data export bundles. Each result provides a
start
and stop
timestamp of the data contained within the export (in unix seconds)
as well as the unique Id
of the bundle.
Calling this endpoint will return a list of the first 20 data export bundles whose end time is after the given start parameter (sorted from oldest to newest). In general, periodically calling this endpoint with the timestamp of your most recently downloaded bundle will ensure that your system is aware of all finished bundles. If you need to download more than 20 bundles, then simply repeat the call using the timestamp of the last bundle in the returned list.
Data Export is an Enterprise pricing tier add-on. See pricing page for more details.
Additional Information
- Get Event Export
- What is Data Export?
- Hauser is an open source project for migrating Data Exports into your data warehouse.
Query Parameters
The timestamp at which to start searching for results. Use Unix seconds (seconds since Epoch).
A successful response.
Schema
- Array [
- ]
exports object[] optional
List of exports matching the criteria
ID of the export
Starting timestamp of the export. Timestamp is in GMT.
Ending timestamp of the export. Timestamp is in GMT.
{
"exports": [
{
"Start": 1447984800,
"Stop": 1448071200,
"Id": 123456789
},
{
"Start": 1448071200,
"Stop": 1448157600,
"Id": 987654321
},
{
"Start": 1448157600,
"Stop": 1448244000,
"Id": 456789123
}
]
}