Fabrics
Through this service; You can view all the fabrics of Modanisa.
GET
https://marketplace-stg.modanisa.com/api/marketplace/fabrics
Parameter |
Explanation |
Data Type |
Compulsory |
page |
Information on which page to bring the fabrics |
integer |
Yes |
size |
Information on how many fabrics will bring in a page |
integer |
Yes |
Request:
{
"page": 1,
"size": 3
}
Response:
{
"success": true,
"data": {
"fabrics": [
{
"id": 2,
"name": "Polyester"
},
{
"id": 3,
"name": "Pamuk"
},
{
"id": 6,
"name": "Viskon"
}
],
"pagination": {
"page": 1,
"total_page": 23,
"count": 67,
"limit": 3
}
},
"errors": null
}