List characteristics of a category - celdotro/marketplace GitHub Wiki
- Lists the characteristics of a category
celmarket\Products\ProductsList
getCategoryCharacteristics
- method: products
- action: getCategoryCharacteristics
- categ_id = category ID
An object with the following attributes
- (array element) = characteristic's data
- charact_id = characteristic's ID
- charact_name = characteristic's name
- priority = characteristic's priority
- charact_value = list of accepted values of the characteristic -> array if there is a list of accepted values, null otherwise
- (array element) = accepted value of the characteristic
{
"request": {
"categ_id": 1
},
"response": {
"0": {
"charact_id": 1,
"charact_name": "X",
"priority": 1,
"charact_value": [
"X"
]
}
}
}