Skip to content

Rename Manufacturer

Request

Change a manufacturer's primary name.

Security
BearerAuth
Path
manufacturer_idstringrequired

The ID of the manufacturer to rename.

Headers
Acceptstring(ManufacturerAcceptHeader)required

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

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

The new primary name.

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

Responses

The manufacturer was renamed. The response has no body.