Skip to main content
POST
/
v1
/
tasks
/
{taskId}
/
change-due-date
Change a task's due date
curl --request POST \
  --url https://dev-public-api.openphone.dev/v1/tasks/{taskId}/change-due-date \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dueDate": "2023-11-07T05:31:56Z"
}
'
{
  "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
dueDate
string<date-time>
required

Response

Success

data
object
required