get
https://api.seismic.com/programs/v2/spaces//tasks/
Retrieves complete details for a specific task by its unique identifier, returning the full task object
with all properties, metadata, assignments, custom fields, and relationships. Use this endpoint to fetch
task information for display in task detail panes, to populate edit forms with current values, to verify
task state before updates, or to retrieve task data for reporting and analytics purposes.
Key Features:
- Returns complete Task object with all task properties and metadata
- Includes task assignment information (assignee, assignor, creator)
- Provides task status and workflow step details within status schema
- Contains planning dates, duration estimates, and timeline information
- Includes custom property values and organization-specific metadata
- Returns task associations with programs, subtasks, and related content
- Provides follower list showing who is tracking the task
- Includes audit timestamps (created, updated) for change tracking
Authorization Logic:
- User must have a valid JWT token with view or manage scopes
- User must have permission to view the task based on role and visibility rules
- Task visibility respects organizational access controls and sharing settings
Usage Examples:
- To fetch task details for display in a task pane, call GET /v2/spaces/{spaceId}/tasks/{taskId} — returns full Task object with all fields populated
- To retrieve current task state before making updates, fetch the task to verify existing assignee, status, and other properties that should be preserved during modifications
- To display task information in dashboards or reports, fetch individual tasks to show title, assignee, status, due dates, and completion progress
- To validate task existence and accessibility before performing related operations like adding comments or attachments