Kaneo Logo
Tasks

Create Task

Create a new task in a project

POST
/task/{projectId}

Authorization

bearerAuth
AuthorizationBearer <token>

API Key authentication

In: header

Path Parameters

projectId*string

Request Body

application/json

title*string
description*string
dueDate?string
priority*string
status*string
userId?string

Response Body

application/json

curl -X POST "https://cloud.kaneo.app/api/task/string" \  -H "Content-Type: application/json" \  -d '{    "title": "string",    "description": "string",    "priority": "string",    "status": "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
}