Create Property
POST /v2/product/property
Creates a new property. Validates input, applies default values, and returns the created resource with system-generated identifiers and timestamps.
Request Body
{
"name": "Test",
"value": "21"
}
Response Example
{
"name": "Length",
"tenant": "example-tenant-id",
"value": "2 meters",
"orderIndex": 10,
"_id": "example-object-id",
"created": "2025-11-03T09:59:02.468Z",
"updated": "2025-11-03T09:59:02.468Z",
"__v": 0,
"id": "example-object-id"
}