attribute_type parameter. This endpoint is useful for obtaining the permissible values for a defined attribute type, as part of managing product attributes or settings within the 4ws.trade suite.attribute_type code is available, representing the specific attribute type for which values are being fetched.page and pageSize) may be required depending on the dataset size.GET request to the API with attribute_type as a query parameter.attribute_type.moreRows is true, the client repeats the request with incremented page until moreRows is false.attribute_type is invalid, the API responds with an error. The client should implement retry logic or error logging to handle failed requests.{
"attributes": [
{
"attribute_type": "ECOMMERCE",
"attribute_level": "Y",
"description_it": "Sì",
"description_en": "Yes",
"description_de": "Ja",
"active": "true"
},
{
"attribute_type": "ECOMMERCE",
"attribute_level": "N",
"description_it": "No",
"description_en": "No",
"description_de": "Nein",
"active": "true"
},
{
"attribute_type": "ECOMMERCE",
"attribute_level": "No",
"description_it": "No",
"description_en": "No",
"description_de": "Nein",
"active": "false"
}
],
"moreRows": false
}attributes: An array of attribute objects, each containing attribute_type, attribute_level, and multilingual descriptions.moreRows: A boolean indicating if there are more rows to fetch.