ticket-system/source/ticketAPI/api/RestFiles/event.http
Tara Wilson 3a8f2949b2 Adding Event Management
Fixing Bugs
Building out UI
2024-12-02 20:21:55 -05:00

50 lines
1.6 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."
}
}