# Get Task Assignees Retrieve all users assigned to a specific task. Endpoint: GET /tasks/{taskId}/assignees Version: 2.0.0 Security: oauth2, apiKey ## Path parameters: - `taskId` (integer, required) ID of the task Example: 500 ## Query parameters: - `workspace_id` (integer, required) ID of the workspace Example: 1 - `project_id` (integer, required) ID of the project Example: 100 ## Response 200 fields (application/json): - `success` (boolean) Example: true - `data` (array) - `data.id` (integer, required) Unique identifier for the assignee Example: 100 - `data.firstname` (string,null) First name of the assigned user Example: "John" - `data.lastname` (string,null) Last name of the assigned user Example: "Doe" - `data.email` (string,null) Email of the assigned user Example: "john.doe@example.com" - `data.user_id` (integer,null) ID of the assigned user Example: 100 - `data.task_id` (integer,null) ID of the task Example: 500 - `data.assigner_id` (integer,null) ID of the user who assigned this task Example: 101 - `message` (string) Example: "Task assignees retrieved successfully" - `meta` (object) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 400 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 401 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 403 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 404 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 500 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string)