curl --request GET \
--url https://api.eu.bronto.io/exports \
--header 'X-BRONTO-API-KEY: <api-key>'{
"exports": [
{
"export_id": "<string>",
"org_id": "<string>",
"progress": 123,
"status": "CREATED",
"bytes": 123,
"events": 123,
"location": "<string>",
"search_details": {
"from": "550e8400-e29b-41d4-a716-446655440000:297bb888-83b1-44e0-8ab6-47879f1275a2",
"fromTs": 1709251200000,
"toTs": 1711390455601,
"where": "ip=10.0.0.1",
"time_range": "Last 3 weeks",
"timeRange": "Last 3 weeks",
"from_ts": 1709251200000,
"to_ts": 1711390455601
},
"created_at": 123,
"modified_at": 123,
"failure_detail": "<string>"
}
]
}curl --request GET \
--url https://api.eu.bronto.io/exports \
--header 'X-BRONTO-API-KEY: <api-key>'{
"exports": [
{
"export_id": "<string>",
"org_id": "<string>",
"progress": 123,
"status": "CREATED",
"bytes": 123,
"events": 123,
"location": "<string>",
"search_details": {
"from": "550e8400-e29b-41d4-a716-446655440000:297bb888-83b1-44e0-8ab6-47879f1275a2",
"fromTs": 1709251200000,
"toTs": 1711390455601,
"where": "ip=10.0.0.1",
"time_range": "Last 3 weeks",
"timeRange": "Last 3 weeks",
"from_ts": 1709251200000,
"to_ts": 1711390455601
},
"created_at": 123,
"modified_at": 123,
"failure_detail": "<string>"
}
]
}A list of exports
Show child attributes
The unique identifier for the export.
The ID of the organization associated with the export.
The progress percentage of the export.
The current status of the export.
CREATED, IN_PROGRESS, COMPLETE The size of the export in bytes.
The number of events in the export.
The location where the export is stored.
Show child attributes
The ids of the logs to search separated by a colon (:).
"550e8400-e29b-41d4-a716-446655440000:297bb888-83b1-44e0-8ab6-47879f1275a2"
The starting time (unix time in milliseconds) for which to query data. Must be used together with to_ts. This parameter is not to be used when using time_range.
1709251200000
The ending time (unix time in milliseconds) for which to query data. Must be used together with from_ts. This parameter is incompatible with time_range.
1711390455601
The where parameter is used to filter the results of your query. See https://docs.bronto.io/core-features/log-search/query-syntax for more details The filter can combine multiple terms using AND, OR, NOT.
"ip=10.0.0.1"
The relative time range for which to query data. Time range supported is from milliseconds to years. For an exact range, use from_ts and to_ts instead.
"Last 3 weeks"
The relative time range for which to query data. Time range supported is from milliseconds to years. For an exact range, use from_ts and to_ts instead.
"Last 3 weeks"
The starting time (unix time in milliseconds) for which to query data. Must be used together with to_ts. This parameter is not to be used when using time_range.
1709251200000
The ending time (unix time in milliseconds) for which to query data. Must be used together with from_ts. This parameter is incompatible with time_range.
1711390455601
The timestamp when the export was created.
The timestamp when the export was last modified.
Provides the reason for the failure if the export did not complete successfully.