Get task
GET
/v1/tasks/{taskId}Get a task together with resolved project, sprint, release, assignee, dependencies, dependents, linked threads, and comments.
How to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| taskId | path | string | Yes | Task ID |
Query parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| threadDetails | query | full | summary | No | Return full linked thread records or compact id, title, and status summaries. |
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Task detailsapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| task | object | No | — |
| task.id | string | No | Unique identifier. |
| task.userId | string | No | User ID. |
| task.organizationId | string | No | — |
| task.createdByUserId | string | No | — |
| task.creator | object | No | — |
| task.creator.type | user | agent | Yes | — |
| task.creator.userId | string | No | User ID. |
| task.creator.agentId | string | No | Agent ID. |
| task.creator.name | string | No | Human-readable name. |
| task.creator.avatarUrl | string | No | — |
| task.projectId | string | No | Project ID. |
| task.releaseId | string | No | — |
| task.title | string | No | Display title. |
| task.description | string | No | Human-readable description. |
| task.status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| task.priority | low | medium | high | urgent | No | — |
| task.type | task | subtask | loop | No | — |
| task.parentTaskId | string | No | — |
| task.loop | object | No | — |
| task.loop.schemaVersion | task_loop_v1 | No | — |
| task.loop.enabled | boolean | No | — |
| task.loop.goal | string | No | End goal the loop should reach. |
| task.loop.endGoal | string | No | Alias for goal. |
| task.loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| task.loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| task.loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| task.loop.maxIterations | integer | No | — |
| task.loop.noProgressLimit | integer | No | — |
| task.loop.minimumScore | number | No | Minimum independently verified score required for success. |
| task.loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| task.loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| task.loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| task.loop.workerAgentId | string | No | — |
| task.loop.verifierAgentId | string | No | — |
| task.sprintId | string | No | — |
| task.assigneeAgentId | string | No | — |
| task.dependencyIds | string[] | No | — |
| task.linkedThreadIds | string[] | No | — |
| task.lastStartedThreadId | string | No | — |
| task.scheduledStartAt | string | No | — |
| task.scheduledEndAt | string | No | — |
| task.dueAt | string | No | — |
| task.completedAt | string | No | ISO 8601 timestamp. |
| task.sortOrder | number | No | — |
| task.metadata | object | No | Free-form metadata object. |
| task.createdAt | string | No | ISO 8601 timestamp. |
| task.updatedAt | string | No | ISO 8601 timestamp. |
| details | object | No | — |
| details.project | object | No | — |
| details.project.id | string | No | Unique identifier. |
| details.project.userId | string | No | User ID. |
| details.project.ownerUserId | string | No | — |
| details.project.ownerName | string | No | — |
| details.project.ownerEmail | string | No | — |
| details.project.ownerAvatarUrl | string | No | — |
| details.project.owner | object | No | — |
| details.project.owner.userId | string | Yes | User ID. |
| details.project.owner.name | string | Yes | Human-readable name. |
| details.project.owner.email | string | No | — |
| details.project.owner.avatarUrl | string | No | — |
| details.project.canTransferOwnership | boolean | No | — |
| details.project.organizationId | string | No | — |
| details.project.createdByUserId | string | No | — |
| details.project.name | string | No | Human-readable name. |
| details.project.description | string | No | Human-readable description. |
| details.project.type | local | cloud | synced | No | — |
| details.project.primarySource | string | No | — |
| details.project.sources | object[] | No | — |
| details.project.createdAt | string | No | ISO 8601 timestamp. |
| details.project.updatedAt | string | No | ISO 8601 timestamp. |
| details.release | object | No | — |
| details.release.object | string | No | — |
| details.release.id | string | No | Unique identifier. |
| details.release.userId | string | No | User ID. |
| details.release.organizationId | string | No | — |
| details.release.createdByUserId | string | No | — |
| details.release.projectId | string | No | Project ID. |
| details.release.name | string | No | Human-readable name. |
| details.release.description | string | No | Human-readable description. |
| details.release.successCriteria | string[] | No | Measurable conditions that define when this milestone is complete. |
| details.release.startAt | string | No | — |
| details.release.endAt | string | No | — |
| details.release.sortOrder | number | No | — |
| details.release.status | planned | active | completed | No | Current lifecycle status. |
| details.release.metadata | object | No | Free-form metadata object. |
| details.release.taskCount | integer | No | — |
| details.release.openTaskCount | integer | No | — |
| details.release.taskIds | string[] | No | — |
| details.release.createdAt | string | No | ISO 8601 timestamp. |
| details.release.updatedAt | string | No | ISO 8601 timestamp. |
| details.sprint | object | No | — |
| details.sprint.id | string | No | Unique identifier. |
| details.sprint.userId | string | No | User ID. |
| details.sprint.organizationId | string | No | — |
| details.sprint.createdByUserId | string | No | — |
| details.sprint.projectId | string | No | Project ID. |
| details.sprint.name | string | No | Human-readable name. |
| details.sprint.goal | string | No | — |
| details.sprint.status | planned | active | completed | No | Current lifecycle status. |
| details.sprint.startAt | string | No | — |
| details.sprint.endAt | string | No | — |
| details.sprint.sortOrder | number | No | — |
| details.sprint.metadata | object | No | Free-form metadata object. |
| details.sprint.createdAt | string | No | ISO 8601 timestamp. |
| details.sprint.updatedAt | string | No | ISO 8601 timestamp. |
| details.assignee | object | No | — |
| details.assignee.id | string | No | Unique identifier. |
| details.assignee.userId | string | No | User ID. |
| details.assignee.organizationId | string | No | — |
| details.assignee.createdByUserId | string | No | — |
| details.assignee.projectId | string | No | Project ID. |
| details.assignee.name | string | No | Human-readable name. |
| details.assignee.description | string | No | Human-readable description. |
| details.assignee.model | string | No | Model identifier for the agent. Built-in managed models: - `claude-opus-4-8` - `claude-opus-4-7` - `claude-opus-4-6` - `claude-sonnet-4-5` - `claude-haiku-4-5` - `gpt-5.5-pro` - `gpt-5.5` - `gpt-5.4` - `gpt-5.4-mini` - `gpt-5.4-nano` - `gemini-3-flash` - `gemini-3-1-flash` - `gemini-3-1-pro` - `deepseek-v4-pro` - `deepseek-v4-flash` - `minimax-m3` - `kimi-k2.6` - `kimi-k2.7-code` - `glm-5.2` - `qwen3.5-397b-a17b` Team and Enterprise organizations can also use connected external models in the form `external:{providerType}:{urlEncodedModelId}`. Use `GET /agents/models` to discover the exact managed and external model IDs available in the current workspace. |
| details.assignee.instructions | string | No | — |
| details.assignee.binary | Claude Code CLI | No | Execution binary used for the agent runtime. |
| details.assignee.executionEngine | computer-agents-cli | native-claude | grok-build | No | Durable execution-engine choice. Native Claude is restricted to managed Anthropic models; Computer Agents CLI and Grok Build retain their provider-target policies. |
| details.assignee.reasoningEffort | minimal | low | medium | high | No | Reasoning intensity used by the execution runtime. |
| details.assignee.enabledSkills | string[] | No | Skill IDs enabled for this agent, for example `deep_research` or custom installed skills. |
| details.assignee.deepResearchModel | gemini-3-flash-preview | gemini-3-pro-preview | No | Optional model override used by the deep research skill when enabled. |
| details.assignee.permissionSet | object | No | Agent permission policy. The shape is intentionally subject-typed so it can also be reused for human users and teams later. |
| details.assignee.permissionSet.version | 1 | No | — |
| details.assignee.permissionSet.subjectType | agent | human_user | team | No | — |
| details.assignee.permissionSet.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources | object | No | — |
| details.assignee.permissionSet.resources.agents | object | No | — |
| details.assignee.permissionSet.resources.agents.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.agents.rules | object[] | No | — |
| details.assignee.permissionSet.resources.agents.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.agents.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.agents.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.agents.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.agents.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.permissionSet.resources.skills | object | No | — |
| details.assignee.permissionSet.resources.skills.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.skills.rules | object[] | No | — |
| details.assignee.permissionSet.resources.skills.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.skills.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.skills.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.skills.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.skills.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.permissionSet.resources.servers | object | No | — |
| details.assignee.permissionSet.resources.servers.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.servers.rules | object[] | No | — |
| details.assignee.permissionSet.resources.servers.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.servers.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.servers.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.servers.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.servers.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.permissionSet.resources.computers | object | No | — |
| details.assignee.permissionSet.resources.computers.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.computers.rules | object[] | No | — |
| details.assignee.permissionSet.resources.computers.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.computers.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.computers.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.computers.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.computers.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.permissionSet.resources.files | object | No | — |
| details.assignee.permissionSet.resources.files.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.files.rules | object[] | No | — |
| details.assignee.permissionSet.resources.files.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.files.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.files.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.files.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.files.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.permissionSet.resources.directories | object | No | — |
| details.assignee.permissionSet.resources.directories.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.directories.rules | object[] | No | — |
| details.assignee.permissionSet.resources.directories.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.directories.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.directories.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.directories.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.directories.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.permissionSet.resources.projects | object | No | — |
| details.assignee.permissionSet.resources.projects.defaultAccess | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.projects.rules | object[] | No | — |
| details.assignee.permissionSet.resources.projects.rules[].id | string | No | Optional stable rule ID. |
| details.assignee.permissionSet.resources.projects.rules[].targetId | string | No | Optional resource identifier for agent, skill, server, computer, or project rules. |
| details.assignee.permissionSet.resources.projects.rules[].path | string | No | Optional file or directory path for path-scoped rules. |
| details.assignee.permissionSet.resources.projects.rules[].access | full_access | ask_for_permission | read_only | no_access | No | Access level for a resource category. `full_access` allows viewing and actions, `ask_for_permission` allows proposed actions that require approval, `read_only` allows viewing without mutation, and `no_access` blocks view and action access. |
| details.assignee.permissionSet.resources.projects.rules[].note | string | No | Optional human-readable note for the rule. |
| details.assignee.voiceMode | off | web | phone | web_and_phone | No | Voice availability for an agent. |
| details.assignee.voiceProvider | xai | No | — |
| details.assignee.voiceModel | string | No | — |
| details.assignee.voiceId | string | No | xAI built-in or custom voice ID. |
| details.assignee.voiceInstructions | string | No | — |
| details.assignee.voiceLanguageHint | string | No | — |
| details.assignee.voiceTurnDetection | object | No | — |
| details.assignee.voicePronunciationReplacements | object | No | — |
| details.assignee.isDefault | boolean | No | — |
| details.assignee.isSystem | boolean | No | — |
| details.assignee.isActive | boolean | No | — |
| details.assignee.metadata | object | No | Free-form metadata object. |
| details.assignee.createdAt | string | No | ISO 8601 timestamp. |
| details.assignee.updatedAt | string | No | ISO 8601 timestamp. |
| details.assignee.lastRunAt | string | No | — |
| details.dependencies | object[] | No | — |
| details.dependencies[].id | string | No | Unique identifier. |
| details.dependencies[].userId | string | No | User ID. |
| details.dependencies[].organizationId | string | No | — |
| details.dependencies[].createdByUserId | string | No | — |
| details.dependencies[].creator | object | No | — |
| details.dependencies[].creator.type | user | agent | Yes | — |
| details.dependencies[].creator.userId | string | No | User ID. |
| details.dependencies[].creator.agentId | string | No | Agent ID. |
| details.dependencies[].creator.name | string | No | Human-readable name. |
| details.dependencies[].creator.avatarUrl | string | No | — |
| details.dependencies[].projectId | string | No | Project ID. |
| details.dependencies[].releaseId | string | No | — |
| details.dependencies[].title | string | No | Display title. |
| details.dependencies[].description | string | No | Human-readable description. |
| details.dependencies[].status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| details.dependencies[].priority | low | medium | high | urgent | No | — |
| details.dependencies[].type | task | subtask | loop | No | — |
| details.dependencies[].parentTaskId | string | No | — |
| details.dependencies[].loop | object | No | — |
| details.dependencies[].loop.schemaVersion | task_loop_v1 | No | — |
| details.dependencies[].loop.enabled | boolean | No | — |
| details.dependencies[].loop.goal | string | No | End goal the loop should reach. |
| details.dependencies[].loop.endGoal | string | No | Alias for goal. |
| details.dependencies[].loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| details.dependencies[].loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| details.dependencies[].loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| details.dependencies[].loop.maxIterations | integer | No | — |
| details.dependencies[].loop.noProgressLimit | integer | No | — |
| details.dependencies[].loop.minimumScore | number | No | Minimum independently verified score required for success. |
| details.dependencies[].loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| details.dependencies[].loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| details.dependencies[].loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| details.dependencies[].loop.workerAgentId | string | No | — |
| details.dependencies[].loop.verifierAgentId | string | No | — |
| details.dependencies[].sprintId | string | No | — |
| details.dependencies[].assigneeAgentId | string | No | — |
| details.dependencies[].dependencyIds | string[] | No | — |
| details.dependencies[].linkedThreadIds | string[] | No | — |
| details.dependencies[].lastStartedThreadId | string | No | — |
| details.dependencies[].scheduledStartAt | string | No | — |
| details.dependencies[].scheduledEndAt | string | No | — |
| details.dependencies[].dueAt | string | No | — |
| details.dependencies[].completedAt | string | No | ISO 8601 timestamp. |
| details.dependencies[].sortOrder | number | No | — |
| details.dependencies[].metadata | object | No | Free-form metadata object. |
| details.dependencies[].createdAt | string | No | ISO 8601 timestamp. |
| details.dependencies[].updatedAt | string | No | ISO 8601 timestamp. |
| details.dependents | object[] | No | — |
| details.dependents[].id | string | No | Unique identifier. |
| details.dependents[].userId | string | No | User ID. |
| details.dependents[].organizationId | string | No | — |
| details.dependents[].createdByUserId | string | No | — |
| details.dependents[].creator | object | No | — |
| details.dependents[].creator.type | user | agent | Yes | — |
| details.dependents[].creator.userId | string | No | User ID. |
| details.dependents[].creator.agentId | string | No | Agent ID. |
| details.dependents[].creator.name | string | No | Human-readable name. |
| details.dependents[].creator.avatarUrl | string | No | — |
| details.dependents[].projectId | string | No | Project ID. |
| details.dependents[].releaseId | string | No | — |
| details.dependents[].title | string | No | Display title. |
| details.dependents[].description | string | No | Human-readable description. |
| details.dependents[].status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| details.dependents[].priority | low | medium | high | urgent | No | — |
| details.dependents[].type | task | subtask | loop | No | — |
| details.dependents[].parentTaskId | string | No | — |
| details.dependents[].loop | object | No | — |
| details.dependents[].loop.schemaVersion | task_loop_v1 | No | — |
| details.dependents[].loop.enabled | boolean | No | — |
| details.dependents[].loop.goal | string | No | End goal the loop should reach. |
| details.dependents[].loop.endGoal | string | No | Alias for goal. |
| details.dependents[].loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| details.dependents[].loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| details.dependents[].loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| details.dependents[].loop.maxIterations | integer | No | — |
| details.dependents[].loop.noProgressLimit | integer | No | — |
| details.dependents[].loop.minimumScore | number | No | Minimum independently verified score required for success. |
| details.dependents[].loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| details.dependents[].loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| details.dependents[].loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| details.dependents[].loop.workerAgentId | string | No | — |
| details.dependents[].loop.verifierAgentId | string | No | — |
| details.dependents[].sprintId | string | No | — |
| details.dependents[].assigneeAgentId | string | No | — |
| details.dependents[].dependencyIds | string[] | No | — |
| details.dependents[].linkedThreadIds | string[] | No | — |
| details.dependents[].lastStartedThreadId | string | No | — |
| details.dependents[].scheduledStartAt | string | No | — |
| details.dependents[].scheduledEndAt | string | No | — |
| details.dependents[].dueAt | string | No | — |
| details.dependents[].completedAt | string | No | ISO 8601 timestamp. |
| details.dependents[].sortOrder | number | No | — |
| details.dependents[].metadata | object | No | Free-form metadata object. |
| details.dependents[].createdAt | string | No | ISO 8601 timestamp. |
| details.dependents[].updatedAt | string | No | ISO 8601 timestamp. |
| details.subtasks | object[] | No | — |
| details.subtasks[].id | string | No | Unique identifier. |
| details.subtasks[].userId | string | No | User ID. |
| details.subtasks[].organizationId | string | No | — |
| details.subtasks[].createdByUserId | string | No | — |
| details.subtasks[].creator | object | No | — |
| details.subtasks[].creator.type | user | agent | Yes | — |
| details.subtasks[].creator.userId | string | No | User ID. |
| details.subtasks[].creator.agentId | string | No | Agent ID. |
| details.subtasks[].creator.name | string | No | Human-readable name. |
| details.subtasks[].creator.avatarUrl | string | No | — |
| details.subtasks[].projectId | string | No | Project ID. |
| details.subtasks[].releaseId | string | No | — |
| details.subtasks[].title | string | No | Display title. |
| details.subtasks[].description | string | No | Human-readable description. |
| details.subtasks[].status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| details.subtasks[].priority | low | medium | high | urgent | No | — |
| details.subtasks[].type | task | subtask | loop | No | — |
| details.subtasks[].parentTaskId | string | No | — |
| details.subtasks[].loop | object | No | — |
| details.subtasks[].loop.schemaVersion | task_loop_v1 | No | — |
| details.subtasks[].loop.enabled | boolean | No | — |
| details.subtasks[].loop.goal | string | No | End goal the loop should reach. |
| details.subtasks[].loop.endGoal | string | No | Alias for goal. |
| details.subtasks[].loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| details.subtasks[].loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| details.subtasks[].loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| details.subtasks[].loop.maxIterations | integer | No | — |
| details.subtasks[].loop.noProgressLimit | integer | No | — |
| details.subtasks[].loop.minimumScore | number | No | Minimum independently verified score required for success. |
| details.subtasks[].loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| details.subtasks[].loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| details.subtasks[].loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| details.subtasks[].loop.workerAgentId | string | No | — |
| details.subtasks[].loop.verifierAgentId | string | No | — |
| details.subtasks[].sprintId | string | No | — |
| details.subtasks[].assigneeAgentId | string | No | — |
| details.subtasks[].dependencyIds | string[] | No | — |
| details.subtasks[].linkedThreadIds | string[] | No | — |
| details.subtasks[].lastStartedThreadId | string | No | — |
| details.subtasks[].scheduledStartAt | string | No | — |
| details.subtasks[].scheduledEndAt | string | No | — |
| details.subtasks[].dueAt | string | No | — |
| details.subtasks[].completedAt | string | No | ISO 8601 timestamp. |
| details.subtasks[].sortOrder | number | No | — |
| details.subtasks[].metadata | object | No | Free-form metadata object. |
| details.subtasks[].createdAt | string | No | ISO 8601 timestamp. |
| details.subtasks[].updatedAt | string | No | ISO 8601 timestamp. |
| details.subtaskIds | string[] | No | — |
| details.parentTask | object | No | — |
| details.parentTask.id | string | No | Unique identifier. |
| details.parentTask.userId | string | No | User ID. |
| details.parentTask.organizationId | string | No | — |
| details.parentTask.createdByUserId | string | No | — |
| details.parentTask.creator | object | No | — |
| details.parentTask.creator.type | user | agent | Yes | — |
| details.parentTask.creator.userId | string | No | User ID. |
| details.parentTask.creator.agentId | string | No | Agent ID. |
| details.parentTask.creator.name | string | No | Human-readable name. |
| details.parentTask.creator.avatarUrl | string | No | — |
| details.parentTask.projectId | string | No | Project ID. |
| details.parentTask.releaseId | string | No | — |
| details.parentTask.title | string | No | Display title. |
| details.parentTask.description | string | No | Human-readable description. |
| details.parentTask.status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| details.parentTask.priority | low | medium | high | urgent | No | — |
| details.parentTask.type | task | subtask | loop | No | — |
| details.parentTask.parentTaskId | string | No | — |
| details.parentTask.loop | object | No | — |
| details.parentTask.loop.schemaVersion | task_loop_v1 | No | — |
| details.parentTask.loop.enabled | boolean | No | — |
| details.parentTask.loop.goal | string | No | End goal the loop should reach. |
| details.parentTask.loop.endGoal | string | No | Alias for goal. |
| details.parentTask.loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| details.parentTask.loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| details.parentTask.loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| details.parentTask.loop.maxIterations | integer | No | — |
| details.parentTask.loop.noProgressLimit | integer | No | — |
| details.parentTask.loop.minimumScore | number | No | Minimum independently verified score required for success. |
| details.parentTask.loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| details.parentTask.loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| details.parentTask.loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| details.parentTask.loop.workerAgentId | string | No | — |
| details.parentTask.loop.verifierAgentId | string | No | — |
| details.parentTask.sprintId | string | No | — |
| details.parentTask.assigneeAgentId | string | No | — |
| details.parentTask.dependencyIds | string[] | No | — |
| details.parentTask.linkedThreadIds | string[] | No | — |
| details.parentTask.lastStartedThreadId | string | No | — |
| details.parentTask.scheduledStartAt | string | No | — |
| details.parentTask.scheduledEndAt | string | No | — |
| details.parentTask.dueAt | string | No | — |
| details.parentTask.completedAt | string | No | ISO 8601 timestamp. |
| details.parentTask.sortOrder | number | No | — |
| details.parentTask.metadata | object | No | Free-form metadata object. |
| details.parentTask.createdAt | string | No | ISO 8601 timestamp. |
| details.parentTask.updatedAt | string | No | ISO 8601 timestamp. |
| details.parentTaskId | string | No | — |
| details.taskType | task | subtask | loop | No | — |
| details.loop | object | No | — |
| details.loop.schemaVersion | task_loop_v1 | No | — |
| details.loop.enabled | boolean | No | — |
| details.loop.goal | string | No | End goal the loop should reach. |
| details.loop.endGoal | string | No | Alias for goal. |
| details.loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| details.loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| details.loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| details.loop.maxIterations | integer | No | — |
| details.loop.noProgressLimit | integer | No | — |
| details.loop.minimumScore | number | No | Minimum independently verified score required for success. |
| details.loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| details.loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| details.loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| details.loop.workerAgentId | string | No | — |
| details.loop.verifierAgentId | string | No | — |
| details.review | object | No | — |
| details.review.reviewRequired | boolean | No | — |
| details.review.reviewerActorId | string | No | — |
| details.review.reviewerActorKind | string | No | — |
| details.review.reviewerName | string | No | — |
| details.linkedThreads | object[] | No | — |
| details.linkedThreads[].id | string | No | Unique identifier. |
| details.linkedThreads[].userId | string | No | User ID. |
| details.linkedThreads[].organizationId | string | No | — |
| details.linkedThreads[].createdByUserId | string | No | — |
| details.linkedThreads[].projectId | string | No | Project ID. |
| details.linkedThreads[].environmentId | string | No | Computer ID. |
| details.linkedThreads[].agentId | string | No | Agent ID. |
| details.linkedThreads[].title | string | No | Display title. |
| details.linkedThreads[].task | string | No | — |
| details.linkedThreads[].appId | string | No | — |
| details.linkedThreads[].status | active | running | completed | failed | cancelled | No | Current lifecycle status. |
| details.linkedThreads[].messageCount | integer | No | — |
| details.linkedThreads[].lastMessageAt | string | No | — |
| details.linkedThreads[].lastMessagePreview | string | No | — |
| details.linkedThreads[].inputTokens | integer | No | — |
| details.linkedThreads[].outputTokens | integer | No | — |
| details.linkedThreads[].totalCost | number | No | — |
| details.linkedThreads[].environmentMinutes | number | No | — |
| details.linkedThreads[].metadata | object | No | Free-form metadata object. |
| details.linkedThreads[].teamExecution | object | No | — |
| details.linkedThreads[].teamExecution.mode | team | No | — |
| details.linkedThreads[].teamExecution.teamAgentId | string | No | — |
| details.linkedThreads[].teamExecution.teamAgentName | string | No | — |
| details.linkedThreads[].teamExecution.orchestrator | object | No | — |
| details.linkedThreads[].teamExecution.orchestrator.agentId | string | No | Agent ID. |
| details.linkedThreads[].teamExecution.orchestrator.agentName | string | No | — |
| details.linkedThreads[].teamExecution.orchestrator.claudeAgentName | string | No | — |
| details.linkedThreads[].teamExecution.subagents | object[] | No | — |
| details.linkedThreads[].teamExecution.subagents[].agentId | string | No | Agent ID. |
| details.linkedThreads[].teamExecution.subagents[].agentName | string | No | — |
| details.linkedThreads[].teamExecution.subagents[].claudeAgentName | string | No | — |
| details.linkedThreads[].subagentActivity | object[] | No | — |
| details.linkedThreads[].subagentActivity[].agentId | string | No | Agent ID. |
| details.linkedThreads[].subagentActivity[].agentName | string | No | — |
| details.linkedThreads[].subagentActivity[].claudeAgentName | string | No | — |
| details.linkedThreads[].subagentActivity[].eventCount | integer | No | — |
| details.linkedThreads[].subagentActivity[].lastActiveAt | string | No | — |
| details.linkedThreads[].subagentActivity[].teamAgentId | string | No | — |
| details.linkedThreads[].subagentActivity[].teamAgentName | string | No | — |
| details.linkedThreads[].environmentName | string | No | — |
| details.linkedThreads[].agentName | string | No | — |
| details.linkedThreads[].createdAt | string | No | ISO 8601 timestamp. |
| details.linkedThreads[].updatedAt | string | No | ISO 8601 timestamp. |
| details.lastStartedThread | object | No | — |
| details.lastStartedThread.id | string | No | Unique identifier. |
| details.lastStartedThread.userId | string | No | User ID. |
| details.lastStartedThread.organizationId | string | No | — |
| details.lastStartedThread.createdByUserId | string | No | — |
| details.lastStartedThread.projectId | string | No | Project ID. |
| details.lastStartedThread.environmentId | string | No | Computer ID. |
| details.lastStartedThread.agentId | string | No | Agent ID. |
| details.lastStartedThread.title | string | No | Display title. |
| details.lastStartedThread.task | string | No | — |
| details.lastStartedThread.appId | string | No | — |
| details.lastStartedThread.status | active | running | completed | failed | cancelled | No | Current lifecycle status. |
| details.lastStartedThread.messageCount | integer | No | — |
| details.lastStartedThread.lastMessageAt | string | No | — |
| details.lastStartedThread.lastMessagePreview | string | No | — |
| details.lastStartedThread.inputTokens | integer | No | — |
| details.lastStartedThread.outputTokens | integer | No | — |
| details.lastStartedThread.totalCost | number | No | — |
| details.lastStartedThread.environmentMinutes | number | No | — |
| details.lastStartedThread.metadata | object | No | Free-form metadata object. |
| details.lastStartedThread.teamExecution | object | No | — |
| details.lastStartedThread.teamExecution.mode | team | No | — |
| details.lastStartedThread.teamExecution.teamAgentId | string | No | — |
| details.lastStartedThread.teamExecution.teamAgentName | string | No | — |
| details.lastStartedThread.teamExecution.orchestrator | object | No | — |
| details.lastStartedThread.teamExecution.orchestrator.agentId | string | No | Agent ID. |
| details.lastStartedThread.teamExecution.orchestrator.agentName | string | No | — |
| details.lastStartedThread.teamExecution.orchestrator.claudeAgentName | string | No | — |
| details.lastStartedThread.teamExecution.subagents | object[] | No | — |
| details.lastStartedThread.teamExecution.subagents[].agentId | string | No | Agent ID. |
| details.lastStartedThread.teamExecution.subagents[].agentName | string | No | — |
| details.lastStartedThread.teamExecution.subagents[].claudeAgentName | string | No | — |
| details.lastStartedThread.subagentActivity | object[] | No | — |
| details.lastStartedThread.subagentActivity[].agentId | string | No | Agent ID. |
| details.lastStartedThread.subagentActivity[].agentName | string | No | — |
| details.lastStartedThread.subagentActivity[].claudeAgentName | string | No | — |
| details.lastStartedThread.subagentActivity[].eventCount | integer | No | — |
| details.lastStartedThread.subagentActivity[].lastActiveAt | string | No | — |
| details.lastStartedThread.subagentActivity[].teamAgentId | string | No | — |
| details.lastStartedThread.subagentActivity[].teamAgentName | string | No | — |
| details.lastStartedThread.environmentName | string | No | — |
| details.lastStartedThread.agentName | string | No | — |
| details.lastStartedThread.createdAt | string | No | ISO 8601 timestamp. |
| details.lastStartedThread.updatedAt | string | No | ISO 8601 timestamp. |
| details.blockedByDependencyIds | string[] | No | — |
| details.readyToStart | boolean | No | — |
| comments | object[] | No | — |
| comments[].object | string | No | — |
| comments[].id | string | No | Unique identifier. |
| comments[].userId | string | No | User ID. |
| comments[].organizationId | string | No | — |
| comments[].createdByUserId | string | No | — |
| comments[].projectId | string | No | Project ID. |
| comments[].taskId | string | No | — |
| comments[].task | object | No | — |
| comments[].task.object | string | No | — |
| comments[].task.id | string | No | Unique identifier. |
| comments[].task.projectId | string | No | Project ID. |
| comments[].task.releaseId | string | No | — |
| comments[].task.title | string | No | Display title. |
| comments[].task.status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| comments[].task.priority | low | medium | high | urgent | No | — |
| comments[].task.sprintId | string | No | — |
| comments[].task.assigneeAgentId | string | No | — |
| comments[].body | string | No | — |
| comments[].authorType | user | agent | system | No | — |
| comments[].authorAgentId | string | No | — |
| comments[].authorUserId | string | No | — |
| comments[].authorName | string | No | — |
| comments[].authorAvatarUrl | string | No | — |
| comments[].sourceThreadId | string | No | — |
| comments[].threadId | string | No | Thread ID. |
| comments[].parentCommentId | string | No | — |
| comments[].metadata | object | No | Free-form metadata object. |
| comments[].createdAt | string | No | ISO 8601 timestamp. |
| comments[].updatedAt | string | No | ISO 8601 timestamp. |
| activity | object[] | No | — |
| activity[].object | string | No | — |
| activity[].id | string | No | Unique identifier. |
| activity[].userId | string | No | User ID. |
| activity[].organizationId | string | No | — |
| activity[].createdByUserId | string | No | — |
| activity[].taskId | string | No | — |
| activity[].projectId | string | No | Project ID. |
| activity[].eventType | created | status_changed | field_changed | thread_started | comment_added | No | — |
| activity[].sourceId | string | No | — |
| activity[].actorType | user | agent | system | No | — |
| activity[].actorUserId | string | No | — |
| activity[].actorAgentId | string | No | — |
| activity[].actorName | string | No | — |
| activity[].actorAvatarUrl | string | No | — |
| activity[].fieldName | string | No | — |
| activity[].previousValue | string | No | — |
| activity[].nextValue | string | No | — |
| activity[].threadId | string | No | Thread ID. |
| activity[].commentId | string | No | — |
| activity[].thread | object | No | — |
| activity[].thread.id | string | No | Unique identifier. |
| activity[].thread.userId | string | No | User ID. |
| activity[].thread.organizationId | string | No | — |
| activity[].thread.createdByUserId | string | No | — |
| activity[].thread.projectId | string | No | Project ID. |
| activity[].thread.environmentId | string | No | Computer ID. |
| activity[].thread.agentId | string | No | Agent ID. |
| activity[].thread.title | string | No | Display title. |
| activity[].thread.task | string | No | — |
| activity[].thread.appId | string | No | — |
| activity[].thread.status | active | running | completed | failed | cancelled | No | Current lifecycle status. |
| activity[].thread.messageCount | integer | No | — |
| activity[].thread.lastMessageAt | string | No | — |
| activity[].thread.lastMessagePreview | string | No | — |
| activity[].thread.inputTokens | integer | No | — |
| activity[].thread.outputTokens | integer | No | — |
| activity[].thread.totalCost | number | No | — |
| activity[].thread.environmentMinutes | number | No | — |
| activity[].thread.metadata | object | No | Free-form metadata object. |
| activity[].thread.teamExecution | object | No | — |
| activity[].thread.teamExecution.mode | team | No | — |
| activity[].thread.teamExecution.teamAgentId | string | No | — |
| activity[].thread.teamExecution.teamAgentName | string | No | — |
| activity[].thread.teamExecution.orchestrator | object | No | — |
| activity[].thread.teamExecution.orchestrator.agentId | string | No | Agent ID. |
| activity[].thread.teamExecution.orchestrator.agentName | string | No | — |
| activity[].thread.teamExecution.orchestrator.claudeAgentName | string | No | — |
| activity[].thread.teamExecution.subagents | object[] | No | — |
| activity[].thread.teamExecution.subagents[].agentId | string | No | Agent ID. |
| activity[].thread.teamExecution.subagents[].agentName | string | No | — |
| activity[].thread.teamExecution.subagents[].claudeAgentName | string | No | — |
| activity[].thread.subagentActivity | object[] | No | — |
| activity[].thread.subagentActivity[].agentId | string | No | Agent ID. |
| activity[].thread.subagentActivity[].agentName | string | No | — |
| activity[].thread.subagentActivity[].claudeAgentName | string | No | — |
| activity[].thread.subagentActivity[].eventCount | integer | No | — |
| activity[].thread.subagentActivity[].lastActiveAt | string | No | — |
| activity[].thread.subagentActivity[].teamAgentId | string | No | — |
| activity[].thread.subagentActivity[].teamAgentName | string | No | — |
| activity[].thread.environmentName | string | No | — |
| activity[].thread.agentName | string | No | — |
| activity[].thread.createdAt | string | No | ISO 8601 timestamp. |
| activity[].thread.updatedAt | string | No | ISO 8601 timestamp. |
| activity[].comment | object | No | — |
| activity[].comment.object | string | No | — |
| activity[].comment.id | string | No | Unique identifier. |
| activity[].comment.userId | string | No | User ID. |
| activity[].comment.organizationId | string | No | — |
| activity[].comment.createdByUserId | string | No | — |
| activity[].comment.projectId | string | No | Project ID. |
| activity[].comment.taskId | string | No | — |
| activity[].comment.task | object | No | — |
| activity[].comment.task.object | string | No | — |
| activity[].comment.task.id | string | No | Unique identifier. |
| activity[].comment.task.projectId | string | No | Project ID. |
| activity[].comment.task.releaseId | string | No | — |
| activity[].comment.task.title | string | No | Display title. |
| activity[].comment.task.status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| activity[].comment.task.priority | low | medium | high | urgent | No | — |
| activity[].comment.task.sprintId | string | No | — |
| activity[].comment.task.assigneeAgentId | string | No | — |
| activity[].comment.body | string | No | — |
| activity[].comment.authorType | user | agent | system | No | — |
| activity[].comment.authorAgentId | string | No | — |
| activity[].comment.authorUserId | string | No | — |
| activity[].comment.authorName | string | No | — |
| activity[].comment.authorAvatarUrl | string | No | — |
| activity[].comment.sourceThreadId | string | No | — |
| activity[].comment.threadId | string | No | Thread ID. |
| activity[].comment.parentCommentId | string | No | — |
| activity[].comment.metadata | object | No | Free-form metadata object. |
| activity[].comment.createdAt | string | No | ISO 8601 timestamp. |
| activity[].comment.updatedAt | string | No | ISO 8601 timestamp. |
| activity[].task | object | No | — |
| activity[].task.id | string | No | Unique identifier. |
| activity[].task.userId | string | No | User ID. |
| activity[].task.organizationId | string | No | — |
| activity[].task.createdByUserId | string | No | — |
| activity[].task.creator | object | No | — |
| activity[].task.creator.type | user | agent | Yes | — |
| activity[].task.creator.userId | string | No | User ID. |
| activity[].task.creator.agentId | string | No | Agent ID. |
| activity[].task.creator.name | string | No | Human-readable name. |
| activity[].task.creator.avatarUrl | string | No | — |
| activity[].task.projectId | string | No | Project ID. |
| activity[].task.releaseId | string | No | — |
| activity[].task.title | string | No | Display title. |
| activity[].task.description | string | No | Human-readable description. |
| activity[].task.status | backlog | todo | in_progress | blocked | in_review | done | canceled | No | Current lifecycle status. |
| activity[].task.priority | low | medium | high | urgent | No | — |
| activity[].task.type | task | subtask | loop | No | — |
| activity[].task.parentTaskId | string | No | — |
| activity[].task.loop | object | No | — |
| activity[].task.loop.schemaVersion | task_loop_v1 | No | — |
| activity[].task.loop.enabled | boolean | No | — |
| activity[].task.loop.goal | string | No | End goal the loop should reach. |
| activity[].task.loop.endGoal | string | No | Alias for goal. |
| activity[].task.loop.progressSignal | string | No | Observable signal that shows each iteration is making progress. |
| activity[].task.loop.verificationCriteria | string | No | How the verifier should judge each iteration. |
| activity[].task.loop.successCriteria | string | No | Objective condition that stops the loop successfully. |
| activity[].task.loop.maxIterations | integer | No | — |
| activity[].task.loop.noProgressLimit | integer | No | — |
| activity[].task.loop.minimumScore | number | No | Minimum independently verified score required for success. |
| activity[].task.loop.maxDurationMinutes | integer | No | Wall-clock budget checked between worker/verifier iterations. |
| activity[].task.loop.maxDurationMs | integer | No | Normalized wall-clock budget returned by the runtime. |
| activity[].task.loop.regressionPolicy | continue | stop | No | Whether a materially regressing candidate stops the loop. |
| activity[].task.loop.workerAgentId | string | No | — |
| activity[].task.loop.verifierAgentId | string | No | — |
| activity[].task.sprintId | string | No | — |
| activity[].task.assigneeAgentId | string | No | — |
| activity[].task.dependencyIds | string[] | No | — |
| activity[].task.linkedThreadIds | string[] | No | — |
| activity[].task.lastStartedThreadId | string | No | — |
| activity[].task.scheduledStartAt | string | No | — |
| activity[].task.scheduledEndAt | string | No | — |
| activity[].task.dueAt | string | No | — |
| activity[].task.completedAt | string | No | ISO 8601 timestamp. |
| activity[].task.sortOrder | number | No | — |
| activity[].task.metadata | object | No | Free-form metadata object. |
| activity[].task.createdAt | string | No | ISO 8601 timestamp. |
| activity[].task.updatedAt | string | No | ISO 8601 timestamp. |
| activity[].metadata | object | No | Free-form metadata object. |
| activity[].createdAt | string | No | ISO 8601 timestamp. |