get https://{accountName}.{environment}.com.br/api/catalog_system/pub/facets/category/
Retrieves the names and IDs of the categories facets.
This endpoint returns a maximum of 50 items per response, so the difference between
_from
and_to
should not exceed this number. It is also important to highlight that the result order is descending, from the highest product ID to the lowest.
Response body has the following properties
Attribute | Type | Description |
---|---|---|
Name | string | Category's facet name. |
Id | integer | Facet ID. |
Response body example:
[
[
{
"Name":"Tamanho Global",
"Id":45
},
{
"Name":"Percentuals",
"Id":25
}
]
]