Path parameters
-
Numeric ID of the product to delete
DELETE /manager/products/{id}
curl \
-X DELETE https://domain.tld/api/v2/manager/products/{id} \
-H "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"
]
}
}