In my category api http://127.0.0.1/magento/rest/V1/categories
returns response like below
.......................{ "id": 140, "parent_id": 2, "name": "Grocery", "is_active": true, "position": 1, "level": 2, "product_count": 343, "children_data": [ {......................
I need to add a thumbnail
field into this result like
......................{ "id": 140, "parent_id": 2, "name": "Grocery", "is_active": true, "position": 1, "level": 2, "product_count": 343, "thumbnail":example/image/file.png "children_data": [ {......................
Currently i have the image in my category collection and i need to add new attributes in my api response using ‘extension attributes’