Sign in

Update item

documented

Update attributes of an existing plan item.

PUT /api/workspaces/{workspaceId}/items/v1/{itemId}Itemsno implementation yet0 runs
No 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://next.liquidplanner.com/api/workspaces/{{$workspace_id}}/items/v1/{{$item_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{LIQUIDPLANNER_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"taskStatusId": {{$task_status_id}}, "workLimitHours": {{$work_limit_hours}}, "relativePriority": {"id": {{$before_item_id}}, "type": "before"}, "customFieldValues": [ {"name": "Color", "value": "{{$color_value}}"} ] }'
Update item · liquidplanner · OpenIntegrations