update_work_item_property
Update a work item property by ID to change its display name, type, settings, required status, and other attributes. Supports project or workspace scope.
Instructions
Update a work item property by ID.
Args: work_item_property_id: UUID of the property project_id: UUID of the project. Omit for workspace scope. work_item_type_id: UUID of the work item type - required when project_id is provided display_name: Display name for the property property_type: TEXT | DATETIME | DECIMAL | BOOLEAN | OPTION | RELATION | URL | EMAIL | FILE | FORMULA relation_type: ISSUE | USER - required when updating to RELATION description: Property description is_required: Whether the property is required default_value: Default value(s) for the property settings: Required when changing type to TEXT/DATETIME. TEXT: {"display_format": "single-line"|"multi-line"|"readonly"} DATETIME: {"display_format": "MMM dd, yyyy"|"dd/MM/yyyy"|"MM/dd/yyyy"|"yyyy/MM/dd"} is_active: Whether the property is active is_multi: Whether the property supports multiple values validation_rules: Validation rules dictionary external_source: External system source name external_id: External system identifier
Returns: Updated WorkItemProperty object
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| is_multi | No | ||
| settings | No | ||
| is_active | No | ||
| project_id | No | ||
| description | No | ||
| external_id | No | ||
| is_required | No | ||
| display_name | No | ||
| default_value | No | ||
| property_type | No | ||
| relation_type | No | ||
| external_source | No | ||
| validation_rules | No | ||
| work_item_type_id | No | ||
| work_item_property_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| name | No | ||
| options | No | ||
| project | No | ||
| is_multi | No | ||
| settings | No | ||
| is_active | No | ||
| workspace | No | ||
| created_at | No | ||
| created_by | No | ||
| deleted_at | No | ||
| issue_type | No | ||
| logo_props | No | ||
| sort_order | No | ||
| updated_at | No | ||
| updated_by | No | ||
| description | No | ||
| external_id | No | ||
| is_required | No | ||
| display_name | Yes | ||
| default_value | No | ||
| property_type | Yes | ||
| relation_type | No | ||
| external_source | No | ||
| validation_rules | No |