Skip to content

Add Manufacturer Alias

Request

Add an additional name this manufacturer should be found under.

The alias is private to the tenant, so it can be added to public manufacturers as well as private ones. Once added, the alias matches exactly like the primary name.

Aliases must stay unambiguous: an alias that already exists, repeats the manufacturer's own name, or resolves to a different manufacturer is rejected with 409, each with its own error code.

Security
BearerAuth
Path
manufacturer_idstringrequired

The ID of the manufacturer to add an alias to.

Headers
Acceptstring(ManufacturerAcceptHeader)required

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

Value:"application/api.luminovo.manufacturer-v1+json"
Bodyapplication/jsonrequired
namestringrequired

The alias to add.

POST
/manufacturers/{manufacturer_id}/aliases
curl -i -X POST \
  'https://api.luminovo.com/manufacturers/{manufacturer_id}/aliases' \
  -H 'Accept: application/api.luminovo.manufacturer-v1+json' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string"
  }'

Responses

The alias was accepted. The response has no body.