ticket-system/source/ticketAPI/api/RestFiles/event.http
2024-12-05 16:47:23 -05:00

63 lines
1.8 KiB
HTTP

@api_HostAddress = http://localhost:5168
@eventId = b9f4478b-701b-4223-9aaa-042b6f53b83a
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": "{{eventId}}",
"Date": "2024-12-05T15: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
###
GET {{api_HostAddress}}/event
Accept: application/json
Content-Type: application/json