Tasks
List all tasks
Retrieves all tasks from the state manager.
GET
/
tasks
/
Copy
curl --request GET \
--url http://localhost:3001/tasks/
Copy
[
{
"deprecated_at_epoch": 123,
"is_deprecated": true,
"minimum_reputation_score": 123,
"model_name": "<string>",
"role": 123,
"security_level": 123,
"task_id": "<string>",
"task_small_id": 123,
"valid_until_epoch": 123
}
]
Response
200
application/json
List of all tasks
The response is of type object[]
.
Copy
curl --request GET \
--url http://localhost:3001/tasks/
Copy
[
{
"deprecated_at_epoch": 123,
"is_deprecated": true,
"minimum_reputation_score": 123,
"model_name": "<string>",
"role": 123,
"security_level": 123,
"task_id": "<string>",
"task_small_id": 123,
"valid_until_epoch": 123
}
]
Assistant
Responses are generated using AI and may contain mistakes.