Skip to content

Remove Manufacturer Alias

Request

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
Path
manufacturer_idstringrequired

The ID of the manufacturer to remove an alias from.

alias_namestringrequired

The alias to remove, URL-encoded and matched exactly.

Headers
Acceptstring(ManufacturerAcceptHeader)required

Set this to application/api.luminovo.manufacturer-v1+json.

Value:"application/api.luminovo.manufacturer-v1+json"
DELETE
/manufacturers/{manufacturer_id}/aliases/{alias_name}
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>'

Responses

The alias was removed. The response has no body.