Skip to main content
PATCH
/
api
/
v1
/
tasks
/
{id}
Update task metadata
curl --request PATCH \
  --url https://neo.api.projectdiscovery.io/api/v1/tasks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>"
}
'
{
  "message": "<string>",
  "success": true,
  "task_id": "<string>",
  "title": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

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

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string<uuid>
required

Task ID

Body

application/json
title
string

New title for the task

Required string length: 1 - 500

Response

Task updated successfully

message
string
required
success
boolean
required
task_id
string
required
title
string

Updated title (if changed)