Update Task
documentedUpdate a specific task.
PUT /itil/{module_name}/{module_item_id}/it_tasks/{task_id}.jsonTasksno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$domain}}.freshservice.com/itil/{{$module_name}}/{{$module_item_id}}/it_tasks/{{$task_id}}.json" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-u "apikey:{{FRESHSERVICE_API_KEY}}" \
-d '{"it_task":{"title":"{{$title}}","description":"{{$description}}","owner_id":"{{$owner_id}}","due_date":"{{$due_date}}","status":"{{$status}}","notify_before":"{{$notify_before}}"}}'