Get Task
Get a specific task by ID.
Returns: The requested task.
Raises: NotFoundError: If task not found.
Documentation Index
Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Response
Successful Response
An agent task representing a unit of work.
Tasks live inside each organization's SurrealDB namespace — the
namespace is the organization boundary, so no per-record
organization_id field is carried on the row.
Subtask relationships are modeled as has_subtask graph edges in
SurrealDB rather than a flat parent reference. Use TaskStorageService
graph traversal methods to find parents and children.
Attributes: id: SurrealDB record ID (populated by database). title: Short description of the task. description: Detailed description. status: Current task status. priority: Priority level (1=urgent, 2=high, 3=normal, 4=low). assigned_to_type_id: Agent type assigned to this task. assigned_to_instance_id: Agent instance working on this task. assigned_to_user_id: User assigned to this task. correlation_bucket_id: Correlation bucket for related events. created_by: User ID of the creator. source: How this task was created.
Status of an agent task on the board.
backlog, assigned, running, review, done 1 <= x <= 4Origin of an agent task.
triage, conversation, manual