Displays and edits ClickUp tasks that are linked to the active Autodesk Fusion document. Changes to task name, due date, and priority are saved directly to ClickUp when you select OK.
Location: Design workspace › PowerTools panel › Update Tasks
Update Tasks lets you edit the most common task fields without switching to the ClickUp web application. The dialog shows only the tasks that are linked to the active Fusion document. The command compares your edits to the original values and sends API updates only for fields that changed, minimizing unnecessary API calls.
- The PowerTools Plus Project add-in must be installed and running in Autodesk Fusion.
cache/auth.jsonmust exist and contain a validclickup_api_token. Run Set ClickUp Tokens if it does not.cache/projects.jsonmust exist and contain a mapping for the active project with aclickup_list_idvalue. Run Map Project to ClickUp if it does not.- A saved Autodesk Fusion document must be open.
- The target ClickUp list must have a text custom field named Fusion Document URN. Tasks appear in the dialog only if they were originally created with the Add ClickUp Task command, which populates that field automatically.
If any required cache file is missing, the command displays a setup prompt and exits without opening the dialog.
The dialog shows all ClickUp tasks whose Fusion Document URN custom field exactly matches the URN of the active Autodesk Fusion document. Tasks are sorted by priority from Urgent to Low.
| Column | Editable | Description |
|---|---|---|
| Task Name | Yes | The ClickUp task title. |
| Due Date | Yes | The target completion date in YYYY-MM-DD format. Leave blank to clear an existing due date. |
| Priority | Yes | Urgent, High, Normal, or Low. |
| Status | No | The current ClickUp task status. This field is read-only. To change status, open the task directly in ClickUp. |
A link to the mapped ClickUp list appears at the top of the dialog.
- Open a saved Autodesk Fusion document in a project that has been mapped to ClickUp.
- On the PowerTools panel in the Design workspace toolbar, select Update Tasks.
- Review the tasks shown in the dialog.
- Edit the Task Name, Due Date, or Priority fields as needed.
- Select OK to save your changes to ClickUp.
A summary message reports how many tasks were updated successfully and flags any failures. Select Cancel to close the dialog without saving any changes.
The Due Date field is validated before the dialog allows you to select OK:
| Input | Behavior |
|---|---|
| Blank | Allowed. Clears the existing due date on the task in ClickUp. |
YYYY-MM-DD |
Required format when a value is entered. |
| Any other format | The OK button is disabled until you correct the value. |
Task status values are workspace-specific in ClickUp and cannot be reliably enumerated without additional API calls. The Status column is displayed for reference only. To change a task's status, open the task directly in ClickUp by selecting the task name link visible in the task tooltip.
| Call | Purpose |
|---|---|
GET /api/v2/list/{list_id}/task |
Fetches tasks from the mapped list, filtered by the Fusion Document URN custom field. |
GET /api/v2/list/{list_id}/field |
Locates the Fusion Document URN field ID in the list. |
PUT /api/v2/task/{task_id} |
Updates changed fields on each individual task. |
For full payload details, see ClickUp API — Update Task.
The following diagram shows how the Update Tasks command reads and writes task data through the ClickUp API.
C4Context
title Update Tasks — Context Diagram
Person(user, "Designer", "Autodesk Fusion user who edits ClickUp task details from within the design environment")
System_Boundary(addin_boundary, "PowerTools Plus Project Add-in") {
System(addin, "Update Tasks", "Fetches document-linked tasks from ClickUp, presents them for editing, and sends updates for changed fields only")
}
System(fusion, "Autodesk Fusion", "CAD host application; provides the active document URN and project URN")
SystemDb(cache, "Local Cache", "auth.json + projects.json — provides API token and List ID")
System_Ext(clickup, "ClickUp API v2", "Source and target for task data; read via GET, updated via PUT")
Rel(user, addin, "Edits task fields and selects OK")
Rel(addin, fusion, "Reads active document URN to filter tasks")
Rel(addin, cache, "Reads ClickUp API token and List ID")
Rel(addin, clickup, "GET /api/v2/list/{id}/task — fetches linked tasks")
Rel(addin, clickup, "GET /api/v2/list/{id}/field — resolves Fusion Document URN field ID")
Rel(addin, clickup, "PUT /api/v2/task/{id} — saves changed fields for each updated task")
| Command | Purpose |
|---|---|
| Add ClickUp Task | Create a new task linked to the active document |
| List Tasks | Read-only view of document tasks and the full project list |
| Open ClickUp | Open the mapped ClickUp list in your browser |
Copyright © 2026 IMA LLC. All rights reserved.