Brands

  • Through this service; You can view all brands of Modanisa.
  • GET https://marketplace-stg.modanisa.com/api/marketplace/brands
    Request Parameters:
    Parameter Explanation Data Type Compulsory
    page Information on which page to bring brands integer Yes
    size Information on how many brands will bring on a page integer Yes

    Request:
    {
        "page": 1,
        "size": 3
    }
    
    

    Response:
    {
        "success": true,
        "data": {
            "brands": [
                {
                    "id": 42,
                    "name": "Aker"
                },
                {
                    "id": 43,
                    "name": "Balse Eşarp"
                },
                {
                    "id": 54,
                    "name": "Pierre Cardin"
                }
            ],
            "pagination": {
                "page": 1,
                "total_page": 464,
                "count": 1390,
                "limit": 3
            }
        },
        "errors": null
    }