예매 가능 날짜 조회 API

콘서트 ID를 통해 해당 콘서트의 예약 가능한 날짜 목록을 반환합니다.

예매 가능 날짜 조회

GET/concerts/{concertId}/dates/available

<엔드포인트 설명>

Headers

Name
Value

Content-Type

application/json

Athorization

Bearer <token>

Path Parameter

Name
Type
Description

concertId

number

조회 할 콘서트 ID

Response

{
  "code": "S",
  "message": "예약 가능한 날짜 목록을 조회했습니다.",
  "data": {
    "concertId": 132654,
    "availableDateList": [
      "2024-01-01",
      "2024-01-02",
      "2024-01-03"
    ]
  },
  "error": null
}

Last updated