Remove an alias previously added to a manufacturer.
The alias is matched exactly, so it must be spelled as it was added, and it must be URL-encoded exactly once — aliases routinely contain spaces, which have to arrive as %20 rather than a literal space or a double-encoded %2520.
Removing an alias that does not exist is reported as 404 rather than silently succeeding, so a typo cannot be mistaken for a successful cleanup.
Security
BearerAuth
DELETE
curl -i -X DELETE \
'https://api.luminovo.com/manufacturers/{manufacturer_id}/aliases/{alias_name}' \
-H 'Accept: application/api.luminovo.manufacturer-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'