Update View
documentedUpdate properties of a view (name, grouping, sorting, etc.).
PUT /v2/view/{view_id}Viewsno 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://api.clickup.com/api/v2/view/{{$view_id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$view_name}}", "type": "{{$view_type}}", "parent": {"id": {{$parent_id}}, "type": {{$parent_type}}}, "grouping": {"field": "{{$grouping_field}}", "dir": {{$grouping_dir}}}}'