Skip to main content
PATCH
/
v1
/
tasks
/
{id}
Update task
curl --request PATCH \
  --url https://api.usenaive.ai/v1/tasks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "<string>",
  "assignee": "<string>",
  "priority": "<unknown>",
  "title": "<string>",
  "body": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Workspace API key. Create one via the dashboard or POST /v1/auth/keys.

Path Parameters

id
string
required

Body

application/json
status
string
assignee
string
priority
any
title
string
body
string

Response

Updated.

The response is of type object.