-
Notifications
You must be signed in to change notification settings - Fork 1
좋아요버튼조회
최영훈 edited this page Jun 6, 2020
·
3 revisions
메소드 | 경로 | 설명 |
---|---|---|
get | /main/like/:concertIdx | 좋아요 여부 확인 |
{
"Content-Type": "application/json"
}
{
"concertIdx":INT(콘서트 id)
}
"data":[
{
"isLike":true
}
]
{
"status": 200,
"success": true,
"message": "좋아요 조회 성공",
"data": {
"isLike": true
}
}
{
"status": 400,
"success": false,
"message": "유효하지 않은 concertIdx"
}