diff --git a/api-reference/issue-types/properties/add-property.mdx b/api-reference/issue-types/properties/add-property.mdx
index 900c4b1..35cfb2a 100644
--- a/api-reference/issue-types/properties/add-property.mdx
+++ b/api-reference/issue-types/properties/add-property.mdx
@@ -33,3 +33,15 @@ Default value(s) for the property.
Whether this property is required when creating work items.
Whether this property is currently active.
Whether this property allows multiple values.
+
+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:
+- `name` (string): Name of the option
+- `description` (string): Description of the option
+- `is_active` (boolean): Whether the option is active
+- `sort_order` (number): Sort order for the option
+- `parent` (string): Parent option ID for hierarchical options
+- `is_default` (boolean): Whether this is the default option
+- `logo_props` (object): Logo properties for the option
+
+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).
+
diff --git a/api-reference/issue-types/values/add-property-values.mdx b/api-reference/issue-types/values/add-property-values.mdx
index de2af0a..4d5a886 100644
--- a/api-reference/issue-types/values/add-property-values.mdx
+++ b/api-reference/issue-types/values/add-property-values.mdx
@@ -22,6 +22,20 @@ The unique identifier for the work item.
## Body parameters
-
-
+
+The value type depends on the property type:
+- TEXT/URL/EMAIL/FILE: string
+- DATETIME: string (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)
+- DECIMAL: number (int or float)
+- BOOLEAN: boolean (true/false)
+- OPTION/RELATION (single): string (UUID)
+- OPTION/RELATION (multi, when is_multi=True): list of strings (UUIDs) or single string
+
+For multi-value properties (is_multi=True):
+- Accept either a single UUID string or a list of UUID strings
+- Multiple records are created
+- Response will be a list of values
+
+For single-value properties:
+- Only one value is allowed per work item/property combination