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[]

Response

204
application/json
ProductFamily resource updated

The response is of type any.