v1

latestSwagger 2.02026-07-13137761.0 MB
Attribute group

Get list of attribute groups

This endpoint allows you to get a list of attribute groups. Attribute groups are paginated and sorted by code.

get/api/rest/v1/attribute-groups

Query parameters

searchstring

Filter attribute groups, for more details see the <a href="/documentation/filter.html#filter-attribute-groups">Filters</a> section.

pageinteger

Number of the page to retrieve when using the page pagination method type. <strong>Should never be set manually</strong>, see <a href="/documentation/pagination.html#pagination">Pagination</a> section

limitinteger

Number of results by page, see <a href="/documentation/pagination.html">Pagination</a> section

with_countboolean

Return the count of items in the response. Be carefull with that, on a big catalog, it can decrease performance in a significative way

Response

Return attribute groups paginated

current_pageinteger

Current page number

Example response

{
  "_embedded": {
    "items": [
      {
        "code": "marketing",
        "sort_order": 4,
        "attributes": [
          "sku",
          "name",
          "description",
          "response_time",
          "release_date",
          "price"
        ],
        "labels": {
          "en_US": "Marketing",
          "fr_FR": "Marketing"
        }
      }
    ]
  }
}