56 lines
1.7 KiB
HTTP
56 lines
1.7 KiB
HTTP
@api_HostAddress = http://localhost:5168
|
|
|
|
POST {{api_HostAddress}}/event
|
|
Accept: application/json
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"Date": "2024-12-02T15:00:00.991Z",
|
|
"EventName": "Winter Concert",
|
|
"EventDescription": "A wintery journey of classical music",
|
|
"Venue": {
|
|
"Name": "Valley Forge High School",
|
|
"Description": "Auditorium",
|
|
"AddressOne": "9999 Independence Blvd",
|
|
"AddressTwo": null,
|
|
"City": "Parma",
|
|
"State": "Ohio",
|
|
"Zip": "44130"
|
|
},
|
|
"Talent": {
|
|
"Name": "Parma Symphony Orchestra",
|
|
"Description": "Parma Symphony Orchestra is a Northeast Ohio community orchestra with over 50 years of history bringing classical music to people of all ages, with opportunities for local students and professional guests to perform a wide ranging repertoire."
|
|
}
|
|
}
|
|
|
|
###
|
|
|
|
PATCH {{api_HostAddress}}/event
|
|
Accept: application/json
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"Id": "1a06c032-b073-4715-9b95-9f3410e7abd9",
|
|
"Date": "2024-12-03T15:00:00.991Z",
|
|
"EventName": "Winter Concert",
|
|
"EventDescription": "A wintery journey of classical music",
|
|
"Venue": {
|
|
"Name": "Valley Forge High School",
|
|
"Description": "Auditorium",
|
|
"AddressOne": "9999 Independence Blvd",
|
|
"AddressTwo": null,
|
|
"City": "Parma",
|
|
"State": "Ohio",
|
|
"Zip": "44130"
|
|
},
|
|
"Talent": {
|
|
"Name": "Parma Symphony Orchestra",
|
|
"Description": "Parma Symphony Orchestra is a Northeast Ohio community orchestra with over 50 years of history bringing classical music to people of all ages, with opportunities for local students and professional guests to perform a wide ranging repertoire."
|
|
}
|
|
}
|
|
|
|
###
|
|
|
|
GET {{api_HostAddress}}/event?startDate=2024-12-01&endDate=2024-12-31
|
|
Accept: application/json
|
|
Content-Type: application/json |