Get Tech Support Job Status
Retrieves the current status of a tech support log collection job. Polls this endpoint to monitor progress and determine when the bundle is ready for download.
Job States:
- RUNNING: Job is in progress
- SUCCESS: Job completed successfully, bundle ready for download
- FAILED: Job failed completely
- PARTIAL_SUCCESS: Job completed with some component failures (fleet or Sentinels)
Job identifier returned from /generate endpoint
f136357e-3106-4064-81d2-03e0029c843c
Successfully retrieved job status
{
"jobId": "hcx-techsupport-2025-11-13-10-30-45-abc123",
"state": "SUCCESS",
"fleetJobState": "SUCCESS",
"failedFleetAppliances": [
{
"applianceId": "string",
"error": "string"
}
],
"fleetFolder": "string",
"error": "Failed to collect logs from HCX Manager",
"fleetJobId": "string",
"sentinelLogCollectionJobInfo": {
"jobId": "string",
"state": "string",
"errorMessage": "string",
"logFolder": "string",
"failedSentinelsInfo": [
{
"sentinelId": "string",
"errorMessage": "string"
}
]
},
"fileName": "hcx-techsupport-2025-11-13-10-30-45-abc123.tar.gz"
}
Job identifier
Overall job state
Fleet appliance log collection state
List of fleet appliances that failed log collection
Folder path containing fleet logs
Error message if job failed
Fleet log collection sub-job ID
Sentinel log collection job information
Generated bundle file name (available when state is SUCCESS)
Job not found
{
"message": "string"
}
Error message
Internal server error
{
"message": "string"
}
Error message
curl -H 'Authorization: <value>' https://{api_host}/api/admin/techSupportLogs/jobStatus/{jobId}