특정 날짜의 예매 가능 좌석 조회 API

콘서트 ID와 날짜를 기준으로, 해당 날짜에 예약 가능한 좌석 번호 목록을 반환합니다.

예매 가능한 좌석 조회

GET/concerts/{concertId}/seats/available

<엔드포인트 설명>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Path Parameter

Name
Type
Description

concertId

number

예매 할 콘서트 ID

Body

Name
Type
Description

date

string

조회 할 날짜(yyyy-MM-dd)

Response

{
  "code": "S",
  "message": "예약 가능한 좌석 정보를 조회했습니다.",
  "data": {
    "concertId": 132654,
    "date": "2024-01-01",
    "availableSeatNoList": [1, 2, 3]
  },
  "error": null
}

Last updated