Skip to main content

Add Properties To Product

PUT /v2/product/property/:id/products/add

Associates one or more products with a specific property. This endpoint adds the provided product identifiers to the property's product list, establishing the relationship between products and their property values. Returns the updated property object with the newly associated products.

Request Body

[
"68549a7f4cc986b856bee470" //product id
]

Response Example

{
"_id": "property-id-1",
"name": "Memory",
"tenant": "tenant-id-1",
"products": [
"68549a7f4cc986b856bee470"
],
"updated": "2025-01-02T00:00:00.000Z"
}