Skip to main content
PUT
/
task
/
move
/
{id}
Move Task
curl --request PUT \
  --url https://cloud.kaneo.app/api/task/move/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "destinationProjectId": "<string>",
  "destinationStatus": "<string>"
}
'
{
  "task": {
    "id": "<string>",
    "projectId": "<string>",
    "position": 123,
    "number": 123,
    "userId": "<string>",
    "title": "<string>",
    "description": "<string>",
    "status": "<string>",
    "priority": "no-priority",
    "createdAt": "2023-11-07T05:31:56Z",
    "startDate": "2023-11-07T05:31:56Z",
    "dueDate": "2023-11-07T05:31:56Z"
  },
  "sourceProjectId": "<string>",
  "destinationProjectId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

id
string
required

Body

application/json
destinationProjectId
string
required
destinationStatus
string

Response

200 - application/json

Task moved successfully

task
object
required
sourceProjectId
string
required
destinationProjectId
string
required