| title | Add custom property values |
|---|---|
| description | Allows you to specify the values for a custom property. |
| api | POST /api/v1/workspaces/{workspace_slug}/projects/{project_id}/work-items/{work_item_id}/work-item-properties/{property_id}/values/ |
The unique identifier for the custom property.
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 stringFor 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