all(Gets the tasks associated with the matter in the current context or the specified matter id if provided.matterId?
):Promise
<Task
[]>
string
Promise
<Task
[]>
the tasks associated with the matter in the current context or the specified matter id.
create(Creates a new task for the specified matter id and returns the newly created task.request
):Promise
<Task
>
CreateTaskRequest
the create request.
Promise
<Task
>
delete(Marks task with the specified task id as deleted and returns the deleted task.id
):Promise
<Task
>
string
Promise
<Task
>
get(Gets the task associated with the specified task id.id
):Promise
<Task
>
string
Promise
<Task
>
the task associated with the specified task id.
open(Opens the specified task.taskId
):void
string
the task to open.
void
openNew(Opens pre-populated task window.request
):void
OpenNewRequest
the add task request.
void
update(Updates a task with the specified task id and returns the updated task.request
):Promise
<Task
>
UpdateTaskRequest
the update request.
Promise
<Task
>