(Quick Reference)
                Service: Delete
Description: This web service is used in order to delete an existing warehouse stock object from the database
Method: DELETE
URL: 
https://BASE_URL/api/VERSION/warehouseStocks/{id}:
| Name | Description | Type | Required | Examples values | 
|---|
| id | the numerical ID of the desired warehouse stock to delete | Long | Yes | 777 | 
URL with external_id: 
https://BASE_URL/api/VERSION/warehouseStocks/reference/{itemId}/{unitId}/{warehouseId}:
| Name | Description | Type | Required | Examples values | 
|---|
| itemId | reference of the item | String | Yes | eliteBook_820 | 
| unitId | reference of the unit | String | Yes | Piéce | 
| warehouseId | reference of the warehouse | String | Yes | VETEMENT-001 | 
Success Output
 Success case: response.status=200 
{
    "success": "true",
    "success_description": "Instance deleted successfully"
} Failure Output
 Failure case:response.status = 404 
{
    "error": "not_found",
    "error_description": "The warehouse stock with the id 3 doesn't exist."
} Failure case:response.status = 400 
{
    "error": "invalid_param_type",
    "error_description": "The type of parameter id you provided is not valid for this request."
}{
    "error": "delete_failed",
    "error_description": "Failed to delete instance"
} Failure case:response.status = 500 
{
    "error": "server_error",
    "error_description": "Oops! Something went wrong..."
}