get_user_assigned_tasks
Retrieve tasks assigned to a specific user, including open and closed tasks, to manage workload and track progress efficiently. Integrates with the Goodday platform for streamlined task management.
Instructions
Get tasks assigned to a specific user.
Args: user_id: The ID of the user closed: Set to true to retrieve all open and closed tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
closed | No | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"closed": {
"default": false,
"title": "Closed",
"type": "boolean"
},
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id"
],
"title": "get_user_assigned_tasksArguments",
"type": "object"
}