Rest API - Batch and Bulk Operations
You want to design a batch delete endpoint for a REST API that deletes multiple products by IDs sent in the request body as JSON. Which approach is best practice?
{
"ids": [101, 102, 103]
}Choose the correct method and request format.
