Kaneo Logo
Tasks

Update Task Assignee

Assign or unassign a task to a user

PUT
/task/assignee/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API Key authentication

In: header

Path Parameters

id*string

Request Body

application/json

userId*string

Response Body

application/json

curl -X PUT "https://cloud.kaneo.app/api/task/assignee/string" \  -H "Content-Type: application/json" \  -d '{    "userId": "string"  }'
{
  "id": "string",
  "projectId": "string",
  "position": 0,
  "number": 0,
  "userId": "string",
  "title": "string",
  "description": "string",
  "status": "to-do",
  "priority": "no-priority",
  "dueDate": null,
  "createdAt": null
}