Get Cache Task Status
cache_task_get_statusCheck the status of a background cache task: retrieve its current progress, operation result, or error message using the task ID.
Instructions
📖 Get status of a background cache task (read-only, safe for unsupervised use)
Retrieve the current status, progress, and result/error information for a specific background cache task.
Args: task_id: The unique identifier for the cache task.
Returns: Dictionary containing task status information: - task_id: Task identifier - status: Current status (queued, running, completed, failed) - operation: Operation type (e.g., folder_get_tree, email_list) - account_id: Associated account - progress: Progress percentage (0-100) - created_at: Task creation timestamp - updated_at: Last update timestamp - result: Operation result (if completed) - error: Error message (if failed) - retry_count: Number of retries attempted
Raises: ValueError: If task_id is not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||