Get Export Task Status
get
/api/v1/bots/{botId}/insightExports/{exportId}/status
Returns the status of a skill-level export task.
Request
Path Parameters
-
botId(required): string
The ID of the skill bot.
-
exportId(required): string
Export task's ID.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Success.
Root Schema : InsightsExportStatusResponse
Type:
Show Source
object-
error: string
If the export task failed, then this property explains why it failed. Otherwise, it contains 'No Error'
-
status: string
Allowed Values:
[ "Completed", "In_Progress", "Failed", "Started", "No_Data" ]The current status of the export.Completed: The export completed successfullyIn_Progress: The export is in progress.Failed: The export failed.Started: The export has started.No_Data: There wasn't any data to export. Try a different date range or filter.
404 Response
The export task doesn't exist.