Start your All-Access Pass to unlock this challenge
I want to make the following request:
PATCH /api/categories/5
{
"products": [
"/api/products/2",
{ "name": "Toothpaste", "price": 4.99 }
]
}
Assume this operation uses the denormalization group called category:write
.
Which of the following is not required to make this work?