Task List
Endpoint to list all tasks accessible to the current user. Filters tasks based on state and visibility:
- Only includes tasks that are
enabled. - Includes tasks that are either
publicor created by the current user.
Args:
Returns:
List[Task]: A list of Task objects visible to the current user.
Raises: HTTPException 500: If a runtime error occurs during task retrieval.
Authorizations
JWT Authorization header using the Bearer scheme. Example: 'Authorization: Bearer {token}'
Response
Successful Response
The Task name.
User who created the task
Next scheduled execution time (UTC)
Unique identifier for the task
Task visibility: 'private' (default) or 'public'
private, public The initial user input for the task, default is None
Optional schedule information for the task
Task state: 'enabled' (default) or 'disabled'
disabled, enabled Task category
