Task Management
Task Management
Get All Tasks
Returns all available tasks from the state manager.
Response Status Codes
200 OK
: Successfully retrieved tasks500 Internal Server Error
: Failed to retrieve tasks from state manager
Response
Returns an array of Task objects:
Response Fields
task_small_id
(integer): Unique small integer identifier for the tasktask_id
(string): Unique string identifier for the taskrole
(integer): Role associated with the taskmodel_name
(string, optional): Name of the model used for the taskis_deprecated
(boolean): Whether the task is deprecatedvalid_until_epoch
(integer, optional): Epoch timestamp until which the task is validdeprecated_at_epoch
(integer, optional): Epoch timestamp when the task was deprecatedsecurity_level
(integer): Security level of the taskminimum_reputation_score
(integer, optional): Minimum reputation score required for the task
Example Error Response
Notes
This endpoint retrieves all tasks regardless of their deprecation status
Tasks are returned in no particular order
Null values for optional fields indicate that they are not set
Last updated