harvest_list_task_assignments
Retrieve assigned tasks for a specific Harvest project to manage workload distribution and track project progress.
Instructions
List task assignments for a project. Use about {"tool": "harvest_list_task_assignments"} for detailed workflow and examples.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_active | No | Filter by active status | |
page | No | Page number | |
per_page | No | Results per page (max 100) | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"is_active": {
"description": "Filter by active status",
"type": "boolean"
},
"page": {
"description": "Page number",
"type": "number"
},
"per_page": {
"description": "Results per page (max 100)",
"type": "number"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}