Nurama Developers
Tasks

Acknowledge all of the current user's unacknowledged mention-tasks in a project.

Sets `acknowledged: true` on every unacknowledged mention-task assigned to the authenticated user in the project. Idempotent — already-acknowledged tasks are left as-is and never re-counted. Scoped to the caller's own tasks; other users' tasks are untouched.

PUT
/tasks/acknowledge-all/{projectId}

Sets acknowledged: true on every unacknowledged mention-task assigned to the authenticated user in the project. Idempotent — already-acknowledged tasks are left as-is and never re-counted. Scoped to the caller's own tasks; other users' tasks are untouched.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

projectId*string

Unique identifier of the project.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/tasks/acknowledge-all/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "acknowledged": 0,  "unacknowledgedCount": {    "total": 0,    "creator": 0,    "reviewer": 0  }}