Skip to main content
PUT
/
v1
/
tasks
/
{taskId}
Update a task
curl --request PUT \
  --url https://api.quo.com/v1/tasks/{taskId} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Follow up with customer",
  "description": "Discuss pricing and onboarding next steps."
}
'
{
  "data": {
    "taskId": "<string>",
    "revision": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

taskId
string
required
Pattern: ^TK(.*)$

Body

application/json
title
string
required

The title of the task.

Example:

"Follow up with customer"

description
string
required

The description of the task.

Example:

"Discuss pricing and onboarding next steps."

Response

Success

data
object
required