Seasons

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

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

    Response:
    {
        "success": true,
        "data": {
            "seasons": [
                {
                    "id": 12,
                    "name": "2015 İlkbahar-Yaz"
                },
                {
                    "id": 53,
                    "name": "2018 Sonbahar-Kış"
                },
                {
                    "id": 98,
                    "name": "2020 Yaz"
                }
            ],
            "pagination": {
                "page": 1,
                "total_page": 23,
                "count": 37,
                "limit": 3
            }
        },
        "errors": null
    }