Skip to main content
PUT
/
api
/
public
/
tasks
/
{id}
Update an existing task
curl --request PUT \
  --url https://api.example.com/api/public/tasks/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "dueDate": "<string>",
  "dueTime": "<string>",
  "timezone": "<string>",
  "responsibleIds": [
    "<string>"
  ],
  "aiContactId": "<string>",
  "aiCustomerId": "<string>",
  "priority": "0",
  "associateToCalendar": false,
  "newStatusPosition": 123,
  "newStatusName": "<string>"
}
'
{}

Path Parameters

id
string<uuid>
required

The UUID of the task to update

Body

application/json
title
string
Minimum string length: 1
description
string | null
dueDate
string | null
dueTime
string | null
timezone
string | null
responsibleIds
string[]
aiContactId
string | null
aiCustomerId
string | null
priority
enum<string>
Available options:
0,
1,
2
associateToCalendar
boolean
default:false
newStatusPosition
number
newStatusName
string

Response

Task updated successfully

The response is of type object.