홈 공연 리스트 조회 - GoldenTicketGroup/GoldenTicketServer GitHub Wiki
홈 공연 리스트 조회(/show/home)
Request
URL
[GET] ~/show/home
Header
메소드 | 파라미터 | 설명 |
---|---|---|
Content-Type | application/json |
Response
Body
SUCCESS
{
"status": 200,
"success": true,
"message": "공연 상세 조회 성공",
"data": [
{
"show_idx": 20,
"image_url": "https://sopt24server.s3.ap-northeast-2.amazonaws.com/poster_main_benhur.jpg",
"name": "뮤지컬 벤허",
"location": "혜화 소극장",
"running_time": "14:00 ~ 16:00 / 16:00 ~ 20:00 ..."
},
{
"show_idx": 21,
"image_url": "https://sopt24server.s3.ap-northeast-2.amazonaws.com/poster_benhur_info.jpg",
"name": "캣츠",
"location": "아르코 예술극장",
"running_time": "16:00 ~ 18:30"
}
]
}
FAIL : 서버 내부 에러의 경우
{
"status": 600,
"success": false,
"message": "공연 일정 전체 조회 실패"
}