List brands
GET
/api/v1/scent/catalog/brands
const url = 'https://api-omni.linra.net/api/v1/scent/catalog/brands?page=1&pageSize=20';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api-omni.linra.net/api/v1/scent/catalog/brands?page=1&pageSize=20' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”page
integer
pageSize
integer
lang
string
changedSince
string format: date-time
Only return rows changed strictly after this UTC instant. See the Catalog delta sync guide.
Responses
Section titled “Responses”A page of brands.
Media typeapplication/json
object
state
required
string
payload
required
details
object
payload
required
object
items
Array<object>
object
id
string format: uuid
name
string
countryOfOrigin
string
isActive
boolean
createdDate
string format: date-time
lastModifiedDate
string format: date-time
pagination
object
page
integer
pageSize
integer
totalCount
integer
totalPages
integer
Example
{ "state": "SUCCESS"}Too many requests — see the Rate limits guide. Retry after the Retry-After header (seconds).
Media typeapplication/json
The envelope every /api/v1 ERROR response uses. state carries the machine-readable error code (see the Errors guide).
object
state
required
string
payload
required
Always null on an error response.
object
details
object
Example
{ "state": "NOT_FOUND_ORDER", "payload": null}Headers
Section titled “Headers”Retry-After
integer
Seconds to wait before retrying.