Get Flow Export Job
Returns the full metadata and current status of a single export job identified by export-id.
Notes:
- Poll this endpoint after calling one of the export-creation endpoints.
- When
statusisCOMPLETED, callPOST /visualization/flow-exports/exports/{export-id}/get-download-keyto obtain the download URL. - To cancel a running job, call
PUT /visualization/flow-exports/exports/{export-id}withstatusset toPENDING_CANCEL.
ID of export job to get
Info of an export job
{
"_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
}
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 -H 'Authorization: <value>' https://{api_host}/intelligence/visualization/flow-exports/exports/{export-id}