## Deletes products by product numbers.

**delete** `/api/v2/public/products`

Deletes products by product numbers.

### Body Parameters

- `product_number: optional array of string`

  The product numbers to target.

### Returns

- `success: boolean`

  Indicates whether the operation completed successfully.

- `data: optional string`

  Optional data payload returned by the operation.

- `message: optional string`

  Human-readable message describing the result.

### Example

```http
curl https://api.colleqtive.net/api/v2/public/products \
    -X DELETE \
    -H "Authorization: $COLLEQTIVE_BEARER_TOKEN"
```

#### Response

```json
{
  "success": true,
  "data": "data",
  "message": "message"
}
```
