Skip to main content
Version: 8.7 (unreleased)

Assign a task

PATCH 

http://localhost:8080/v1/tasks/:taskId/assign

Assign a task with taskId to assignee or the active user. Returns the task.

Request​

Responses​

On success returned.

Authorization: TASKLIST-SESSION

name: TASKLIST-SESSIONtype: apiKeydescription: Cookie-based authentication is only available on Self-Managed clusters.in: cookie
name: bearer-keytype: httpscheme: bearerbearerFormat: JWT
curl -L -X PATCH 'http://localhost:8080/v1/tasks/:taskId/assign' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TASKLIST-SESSION>' \
-d '{
"assignee": "string",
"allowOverrideAssignment": true
}'
Request Collapse all
Base URL
http://localhost:8080
Auth
Parameters
— pathrequired
Body
{
"assignee": "string",
"allowOverrideAssignment": true
}