core.cases.create_task
Create a new task for a case.
Enterprise Edition
Inputs
string
required
The ID of the case to create a task for.
string
required
The title of the task.
string | null
The ID of the user to assign the task to.Default:
null.object | null
The default trigger values for the task.Default:
null.string | null
The description of the task.Default:
null.string
The priority of the task (unknown, low, medium, high, critical).Default:
"unknown".string
The status of the task (todo, in_progress, blocked, completed).Default:
"todo".string | null
The ID of the workflow associated with this task.Default:
null.Examples
Create a taskcore.cases.get_task
Get a specific case task by ID.
Enterprise Edition
Inputs
string
required
The ID of the task to retrieve.
Examples
Get a taskcore.cases.list_tasks
List all tasks for a case.
Enterprise Edition
Inputs
string
required
The ID of the case to list tasks for.
Examples
List taskscore.cases.update_task
Update an existing case task.
Enterprise Edition
Inputs
string
required
The ID of the task to update.
string | null
The ID of the user to assign the task to.Default:
null.object | null
The default trigger values for the task.Default:
null.string | null
The updated description of the task.Default:
null.string | null
The updated priority of the task (unknown, low, medium, high, critical).Default:
null.string | null
The updated status of the task (todo, in_progress, blocked, completed).Default:
null.string | null
The updated title of the task.Default:
null.string | null
The ID of the workflow associated with this task.Default:
null.Examples
Update a taskcore.cases.delete_task
Delete a case task.
Enterprise Edition
Inputs
string
required
The ID of the task to delete.