You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api-reference/issue-types/properties/add-property.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,3 +33,15 @@ Default value(s) for the property.
33
33
<ParamFieldbody="is_required"type="boolean">Whether this property is required when creating work items.</ParamField>
34
34
<ParamFieldbody="is_active"type="boolean">Whether this property is currently active.</ParamField>
35
35
<ParamFieldbody="is_multi"type="boolean">Whether this property allows multiple values.</ParamField>
36
+
<ParamFieldbody="options"type="object[]">
37
+
Array of option objects for OPTION type properties. This field can be used while creating a property with type OPTION to set options on the custom property during creation itself. Each option object can contain:
38
+
-`name` (string): Name of the option
39
+
-`description` (string): Description of the option
40
+
-`is_active` (boolean): Whether the option is active
41
+
-`sort_order` (number): Sort order for the option
42
+
-`parent` (string): Parent option ID for hierarchical options
43
+
-`is_default` (boolean): Whether this is the default option
44
+
-`logo_props` (object): Logo properties for the option
45
+
46
+
To add or update options on an OPTION property after creation, you can use the APIs from [`issue-types/options/add-dropdown-options`](/api-reference/issue-types/options/add-dropdown-options).
0 commit comments