-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 냉장고
owenyi edited this page Nov 20, 2020
·
1 revision
URL
/api/refrigerator/getRefrigerator?user_idx=1
RESPONSE
key | type | description | remark |
---|---|---|---|
user_idx | int | ||
ingredients_idx | int | ||
ingredients_name | str | ||
buyDate | str | ||
expirationDate | str | ||
expiration | int |
RESPONSE BODY
{
"res_State": "success_get_refrigerator",
"res_Msg": "냉장고를 성공적으로 가져왔습니다.",
"res_Data": [
{
"user_idx": 1,
"ingredients_idx": 2,
"ingredients_name": "전분",
"buyDate": "2020-09-20T00:00:00.000Z",
"expirationDate": "2020-10-20T00:00:00.000Z",
"expiration": 2
}
]
}