Endpoint to retrieve the execution results of scheduled task runs.
Args: task_id (str): The unique identifier of the task whose scheduled run results are being fetched. page (int, optional): Pagination index for results. Defaults to 1. limit (int, optional): Number of results per page. Defaults to 50.
Returns:
List[TaskOutcome]: A paginated list of TaskOutcome entries for the specified task.
Raises: HTTPException 400: If the task has a manual schedule (i.e., not auto-run). HTTPException 403: If the task is private and the current user is not the creator. HTTPException 404: If the task or its scheduled runs are not found. HTTPException 500: If a runtime error occurs during retrieval.
JWT Authorization header using the Bearer scheme. Example: 'Authorization: Bearer {token}'
Successful Response
The task ID
The name of the task
The time the task execution started
The time the task execution completed
The result of the task execution
'completed' if all actions succeeded, else 'failed'