Remove Product From Property
PUT /v2/product/property/:id/products/remove
Removes one or more products from a property's associated product list. This endpoint disassociates the specified product identifiers from the property, breaking the relationship between products and their property values. Returns the updated property object with the products removed.
Headers
Accept- Expected response format (Example:application/json, text/plain, */*)
Request Body
[
"7aa9784d-d0a8-43a3-b978-5435c6209c85"
]
Response Example
{
"_id": "property-id-1",
"name": "Memory",
"tenant": "tenant-id-1",
"products": [],
"updated": "2025-01-02T00:00:00.000Z"
}