assess_remove_task_from_project
Remove a task from a project in the Assess realm, ensuring proper organization within the ADD framework. Input task and project record names for precise task management.
Instructions
Remove a task from a project in Assess realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectRecordName | Yes | Record name of the project | |
taskRecordName | Yes | Record name of the task |
Input Schema (JSON Schema)
{
"properties": {
"projectRecordName": {
"description": "Record name of the project",
"type": "string"
},
"taskRecordName": {
"description": "Record name of the task",
"type": "string"
}
},
"required": [
"taskRecordName",
"projectRecordName"
],
"type": "object"
}