Skip to content

Main ํ™”๋ฉด

Lucas edited this page Dec 3, 2019 · 2 revisions

ํ™ˆํ™”๋ฉด ์ถ”์ฒœ ๊ตฌ๋…์„œ๋น„์Šค 2๊ฐœ

Context-type : application/json

GET /home


Response

Sucess

{
    "message": "success",
    "data": {
        "recommands": [
            {
                "title": "ํ’€๋ฌด์›",
                "image": "https://modoctest.s3.ap-northeast-2.amazonaws.com/1574519728123.png",
                "subTitle": "์‹๋ฃŒํ’ˆ ์ •๊ธฐ๋ฐฐ์†ก",
                "_id": "5dd943b0ceac698b234c76fa"
            },
            {
                "title": "Google Cloud",
                "image": "https://modoctest.s3.ap-northeast-2.amazonaws.com/1574507149865.jpeg",
                "subTitle": "๋ฌด๋ฃŒ๋กœ ์ฆ๊ธฐ๋Š” ์ €์žฅ๊ณต๊ฐ„",
                "_id": "5dd9128d7b70d28494e834bf"
            }
        ]
    }
}


Fail : 409

{
  "message": "invaild data",
  "data": {

  }
}

Fail : 500

{
  "message": "server error",
  "data": {

  }
}



๊ฐ„๋žตํ•œ ์ด๋ฒˆ๋‹ฌ ์ด ์‚ฌ์šฉ๊ธˆ์•ก

Context-type : application/json

GET /home/total


Response

Sucess

{
    "message": "success",
    "data": {
         "totalPrice": 38800
     }
}


Fail : 409

{
  "message": "invaild data",
  "data": {

  }
}

Fail : 500

{
  "message": "server error",
  "data": {

  }
}



๊ฐ„๋žตํ•œ ์‚ฌ์šฉ๋Ÿ‰ ๋ถ„์„

Context-type : application/json

GET /home/usage


Resonse

Sucess

{
    "message": "success",
    "data": {
        "usage": [
            {
                "title": "Youtube",
                "image": "https://modoctest.s3.ap-northeast-2.amazonaws.com/1574506673972.png",
                "price": 20000,
                "type": "month",
                "score": -46
            },
            {
                "title": "NAVER Cloud",
                "image": "https://modoctest.s3.ap-northeast-2.amazonaws.com/1574506673972.png",
                "price": 20000,
                "type": "month",
                "score": -67
            },
            {
                "title": "Netflix",
                "image": "https://modoctest.s3.ap-northeast-2.amazonaws.com/1574506673972.png",
                "price": 20000,
                "type": "month",
                "score": -88
            },
            {
                "title": "ํ’€๋ฌด์›",
                "image": "https://modoctest.s3.ap-northeast-2.amazonaws.com/1574507027962.jpeg",
                "price": 5000,
                "type": "month",
                "score": 20
            }
        ]
    }
}


Fail : 409

{
  "message": "invaild data",
  "data": {

  }
}
> Fail : 500
{
  "message": "server error",
  "data": {

  }
}