Path Parameters
Task ID
Body
application/json
Response
Task updated successfully
curl --request POST \
--url https://api.vida.dev/api/v2/tasks/{taskId} \
--header 'Content-Type: application/json' \
--data '{
"state": "canceled",
"context": "New context",
"waitToGreet": true
}'
Update fields on an existing task by ID.
curl --request POST \
--url https://api.vida.dev/api/v2/tasks/{taskId} \
--header 'Content-Type: application/json' \
--data '{
"state": "canceled",
"context": "New context",
"waitToGreet": true
}'
Task ID
Task updated successfully