Query Flow Export Jobs

Query Flow Export Jobs
List all 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.
  • filters accepts up to 300 filter entries.
  • Use the export_id from the results with GET /visualization/flow-exports/exports/{export-id} to fetch a specific job's details.
  • Once a job reaches COMPLETED status, call POST /visualization/flow-exports/exports/{export-id}/get-download-key to obtain the download URL.
Request
URI
POST
https://{api_host}/intelligence/visualization/flow-exports/exports
COPY
Request Body

Wrapper request for Exports with restricted filter keys

VizExportsRequest of type(s) application/json
Required  
This request body class requires all of the following: ListRequestParameters , InlineVizExportsRequest1
{
    "page_size": 50,
    "offset": 0,
    "filters": []
}
Authentication
This operation uses the following authentication methods.
Responses
200

success

Returns ExportListResult of type(s) application/json
This response body class contains all of the following: ListResult , InlineExportListResult1
{
    "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
        }
    ]
}

400

Bad Request

Returns BadRequest of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


401

Unauthorized

Returns Unauthorized of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


403

Forbidden

Returns Forbidden of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


412

Precondition Failed

Returns PreconditionFailed of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


428

Precondition Required

Returns PreconditionRequired of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


429

Too Many Requests

Returns TooManyRequests of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


default

Error

Returns Error of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/intelligence/visualization/flow-exports/exports