Task - Workflow Notes
Manage notes associated with specific workflow steps within tasks. Supports creating, listing, updating, and deleting step-level notes. Notes can be pinned for priority visibility (PinnedLevel > 0) and include author tracking and timestamps. Useful for documenting work done on specific workflow steps.
-
GET List Notes for Workflow StepLists all notes for the specified workflow step./tenants/{tenant}/tasks/{taskCode}/groups/{groupNumber}/steps/{stepNumber}/notes
-
POST Create Note for Workflow StepCreates a new note for the specified workflow step./tenants/{tenant}/tasks/{taskCode}/groups/{groupNumber}/steps/{stepNumber}/notes
-
GET Get Pinned Notes for Workflow StepGets all pinned notes for the specified workflow step (PinnedLevel > 0), ordered by PinnedLevel descending./tenants/{tenant}/tasks/{taskCode}/groups/{groupNumber}/steps/{stepNumber}/notes/pinned
-
GET Get Note by CodeGets a specific note for the workflow step by its code./tenants/{tenant}/tasks/{taskCode}/groups/{groupNumber}/steps/{stepNumber}/notes/{code}
-
PUT Update Note for Workflow StepUpdates an existing note for the specified workflow step./tenants/{tenant}/tasks/{taskCode}/groups/{groupNumber}/steps/{stepNumber}/notes/{code}
-
DELETE Delete Note from Workflow StepDeletes a note from the specified workflow step./tenants/{tenant}/tasks/{taskCode}/groups/{groupNumber}/steps/{stepNumber}/notes/{code}