Path parameters
-
id
integer Required Numeric ID of the product to delete
DELETE
/manager/products/{id}
curl \
--request DELETE 'https://domain.tld/api/v2/manager/products/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
"message": "Unauthorized."
}
Response examples (422)
{
"message": "field is required! (and 3 more error)",
"errors": {
"field": [
"Error message details here"
],
"additionalProperty1": [
"Error message details here"
],
"additionalProperty2": [
"Error message details here"
]
}
}