Skip to content

Update Task

Request

Update Task

Security
bearerAuth
Path
taskIdinteger, (int64), >= 1required

ID of the task to be updated

Example:1
Bodyapplication/jsonrequired

Update existing workflow task priority :"LOW, MEDIUM, HIGH"

summarystring

summary

Example:"Summary for the task"
prioritystring

priority

Enum:"LOW""MEDIUM""HIGH"
Example:"MEDIUM"
detailsstring

details

Example:"Details of the task"
curl -i -X PUT \
  https://codeinsightapi.redocly.app/_mock/swagger/tasks/1 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "summary": "Summary for the task",
    "priority": "MEDIUM",
    "details": "Details of the task"
  }'

Responses

OK