PUT
/
product-families
/
{id}
/
products
curl -X PUT \
 /product-families/{id}/products \
 --header "Content-Type: application/json" \
 --header "Authorization: Bearer <token>" \
 --data '{
    "products": [
        ""
    ]
}'
"<any>"

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

ProductFamily identifier

Body

The updated ProductFamily resource
products
string[]
Example:
["ad8f3b9c-1b1a-4b0a-8b0a-0b0b0b0b0b0b"]

Response

204
application/json
ProductFamily resource updated

The response is of type any.