Query Flow Export Jobs
Returns a paginated list of all flow export jobs across all entity types, with their current status and metadata.
Notes:
- Each result entry contains the job ID, status, creation time, entity type, and file name.
filtersaccepts up to 300 filter entries.- Use the
export_idfrom the results withGET /visualization/flow-exports/exports/{export-id}to fetch a specific job's details. - Once a job reaches
COMPLETEDstatus, callPOST /visualization/flow-exports/exports/{export-id}/get-download-keyto obtain the download URL.
Wrapper request for Exports with restricted filter keys
{
"page_size": 50,
"offset": 0,
"filters": []
}
success
{
"offset": 0,
"number_of_results": 2,
"total_result_count": 2,
"total_pages": 1,
"results": [
{
"_links": [],
"_revision": 0,
"_create_user": "admin",
"_create_time": 1782175456095,
"_last_modified_user": "admin",
"_last_modified_time": 1782175467000,
"id": "7c375ab3-0726-4a79-829b-2e3e36272eca",
"display_name": "export-job-7c375ab3-0726-4a79-829b-2e3e36272eca",
"file_name": "leaked-flows.csv",
"expiration_time": 1782780267000,
"status": "COMPLETED",
"file_size": 1764,
"row_count": 9
},
{
"_links": [],
"_revision": 0,
"_create_user": "admin",
"_create_time": 1782175150144,
"_last_modified_user": "admin",
"_last_modified_time": 1782175157000,
"id": "e167c828-f474-4e5a-9f53-6c91cb9ec82d",
"display_name": "export-job-e167c828-f474-4e5a-9f53-6c91cb9ec82d",
"file_name": "infra-monitoring-flows.csv",
"expiration_time": 1782779957000,
"status": "COMPLETED",
"file_size": 1764,
"row_count": 9
}
]
}
Bad Request
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Unauthorized
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Forbidden
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Precondition Failed
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Precondition Required
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Too Many Requests
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Error
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/intelligence/visualization/flow-exports/exports