Get an order
주문 단건 조회 API : 사용자, 어드민
Retrieve an order
GET /order/{orderId}
<Description of the endpoint>
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Path parameters
Name
Type
Description
orderId
string
주문 번호
Response
{
"orderId": 1,
"concertId": 1,
"seats": [
{
"seatPriceId": 1,
"price": 50000
},
{
"seatPriceId": 2,
"price": 70000
}
],
"totalPrice": 120000,
"status": "결제 완료",
"createdAt": "2024-09-25T12:34:56",
"updatedAt": "2024-09-25T13:00:00"
}{
"error": "Invalid request"
}Last updated