Returns the list of all manufacturers available in the search index.
Request
GET /manufacturer
Headers
| Header | Value |
|---|---|
Authorization | Bearer <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
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier of the manufacturer as stored in the index. |
title | string | Display name of the manufacturer. |
Example Response
[
{
"id": "manufacturer-123",
"title": "Acme Corp"
},
{
"id": "manufacturer-456",
"title": "Example Brand"
}
]
