Get task
  GET /tasks/{taskId}    
 GET
 /tasks/{taskId}
 Get a task
Parameters
Path Parameters
 taskId 
 required
   Responses
200
Task
object
 data    
 object
 type    
 string
  id    
 string
  attributes    
 object
 name    
 Name of the task
string
  description    
 Rich-text description of the task
string
  status    
 Status of the task
string
  dueDate    
 Due date of the task as an integer representing milliseconds since the Unix epoch
integer  format: int64  
  isPriority    
 Whether the task is marked as a priority
boolean
  createdDate    
 Created date of a task as an integer representing milliseconds since the Unix epoch
integer  format: int64  
  tags    
 A list of label/value tags associated with the matter as an array of object .
Array<object>
object
 label    
 The label of the tag (e.g., “priority”, “status”, “type”, “value”)
string
  value    
 An optional value to the label of the tag (e.g., “high”, “open”, “ACC”, “$3,000”)
string
  assignees    
 A list of assignees as userIds
Array<string>
  reviewers    
 A list of reviewers as userIds
Array<string>
  matterId    
 The matterId the task is associated with
string
  matterName    
 The matter name the task is associated with
string
  milestoneId    
 The milestoneId the task is associated with
string
  milestoneName    
 The milestone name the task is associated with
string