Others > News Room


List

GET : /api/designnest/v1/news_room?type=0&page=1

Type

Type Explain
0 all
1 fairs
2 universities
3 awards
4 review
5 news

Response

{
    "code" : 1 , 
    "status_code" : 200 ,
    "message" : "" ,
    "data" : {
        "list" : {
            "has_more_page": 0 / 1,
            "data": [
                {
                    "is_today": 0,
                    "content": {
                        "id": 0,
                        "type": 0,
                        "author": "",
                        "title": "",
                        "text": "",
                        "address": "",
                        "booth_no": "",
                        "contact_email": "",
                        "cover": url ,
                        "start_time": Y-m-d,
                        "end_time": Y-m-d,
                        "timeline_time": Y-m-d
                    }
                } ,
                ...
            ],
        }
    } 
}

Show

GET : /api/designnest/v1/news_room/{id}

Response

{
    "code" : 1 , 
    "status_code" : 200 ,
    "message" : "" ,
    "data" : {
        "list" : [] ,
        "detail" : {
            "id": 0 ,
            "title": "",
            "time": Y.m.d ,
            "author": "",
            "text": "",
            "images": [
               {
                   "id": 0,
                   "url": url
               },
               ...
            ],
            "videos": [
               {
                   "id": 0,
                   "url": url
               },
               ...
            ]
        }
    } 
}