Skip to main content
PUT
/
v1
/
tasks
/
{taskId}
Update a task
curl --request PUT \
  --url https://dev-public-api.openphone.dev/v1/tasks/{taskId} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>"
}
'
{
  "data": {
    "taskId": "<string>",
    "revision": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://openphone-dev.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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