Why am I unable to Complete a task in a shared list
- If you are a list member in a shared list (Not an admin ) then you cannot complete a task unless it is assigned to you.
- Only the assigned person will be able to complete the task assigned to him/her.
- If there is no user added in "Assign to" field, then any member of the list can mark the task as complete.
Related Articles
How Permissions work in WeGoDoo in a Shared List
About Permissions in WeGoDoo for a Shared List 1. List Member Permissions (Not an admin) A List member is a user who is added to a list as a member only. If this user is added to "Assigned to" field in a task, then only this user or an Admin can ...
Why am I unable to Delete a task in a shared list?
Only Admins or Task Creator (the user who created the task) have the rights to delete a task This is to make sure that no other member of the list can accidently delete a task. For more information about permissions, you can check "Permissions in ...
Complete Task API
This API allows you to mark a specific task as completed in a specified list. API Endpoint PATCH /api/v1/tasks/complete Request Body JSON payload: { "task_id": "61043" } Required Fields task_id (long): The ID of the task to be marked as completed. ...
How do I uncomplete a subtask if I accidentally marked it as complete
Subtask is a great way to organize large work. By breaking down a massive project into more manageable parts, you feel empowered and confident in successful project completion. How to restore your uncomplete sub-task, which you have marked as ...
Create Task API
This API allows you to create a new task in a specified list. API Endpoint POST /api/v1/tasks Request Body JSON payload: { "list_id": "12345", "task_name": "Prepare Presentation for Quarterly Review", "note": "Include key performance indicators and ...