Skip to content

Commit

Permalink
admin-concert example http 코드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
plere committed Sep 28, 2024
1 parent dc5ef32 commit e38287f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions admin/admin-concert/src/test/http/adminconcert.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
### get
GET http://localhost:8081/places?name=올림픽

### addPlace
POST http://localhost:8081/places
Content-Type: application/json

{
"name": "올림픽공원",
"address": "seoul",
"seats": [
{
"columnNum": 1,
"rowNum": 1,
"floor": 1
}
]
}

### addPlace with identifier
POST http://localhost:8081/places
Content-Type: application/json

{
"name": "올림픽공원2",
"address": "seoul",
"seats": [
{
"columnNum": 1,
"rowNum": 1,
"floor": 1
}
],
"identifier": "da6db354-d4eb-403a-9526-cb400311114a"
}

0 comments on commit e38287f

Please sign in to comment.