List manufacturers

Returns the list of all manufacturers available in the search index.

Request

GET /manufacturer

Headers

HeaderValue
AuthorizationBearer <token>

Example Request

GET /manufacturer

Response

Returns a JSON array of manufacturer objects. The X-Total-Count response header contains the total number of manufacturers.

Response Fields

FieldTypeDescription
idstringUnique identifier of the manufacturer as stored in the index.
titlestringDisplay name of the manufacturer.

Example Response

[
  {
    "id": "manufacturer-123",
    "title": "Acme Corp"
  },
  {
    "id": "manufacturer-456",
    "title": "Example Brand"
  }
]