API reference
List brands
Retrieve a paginated list of brands with optional filtering
GET
/v1/catalog/brandsRetrieve a paginated list of brands with optional filtering
Authorization
bearerAuth AuthorizationBearer <token>
OAuth2 access token issued by Ecomiq Auth.
In: header
Query Parameters
limit?integer
Maximum number of results to return.
Format
int32cursor?string
Opaque cursor from the previous response. Omit it on the first page.
search?string
Free-text filter. Which fields it covers depends on the resource.
sortBy?string
Field to sort by. Accepted values depend on the resource.
sortDirection?string
Sort direction: asc or desc.
Value in
- "asc"
- "desc"
ids?array<any>
isActive?boolean
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/catalog/brands"{ "pageIndex": 0, "pageSize": 0, "count": 0, "totalPages": 0, "hasPreviousPage": true, "hasNextPage": true, "data": [ { "id": "string", "storeId": "string", "name": "string", "slug": "string", "logo": null, "icon": null, "description": null, "metaTitle": null, "metaDescription": null, "keywords": null, "order": 0, "createdOn": "2019-08-24T14:15:22Z", "updatedOn": null } ]}