Get special event
GET/special-events/:eventId
Get details about a special event.
Request
Path Parameters
eventId uuidrequired
An identifier for a special event.
Responses
- 200
- 400
- 404
Success
- application/json
- Schema
- Example (from schema)
- default_example
Schema
eventId uuidrequired
Identifier for a special event.
name EventNamerequired
Name of the special event
location EventLocationrequired
Location where the special event is held
eventDescription EventDescriptionrequired
Description of the special event
dates date[]required
List of planned dates for the special event
price floatrequired
Price of a ticket for the special event
{
"eventId": "3be6453c-03eb-4357-ae5a-984a0e574a54",
"name": "Pirate Coding Workshop",
"location": "Computer Room",
"eventDescription": "Captain Blackbeard shares his love of the C...language. And possibly Arrrrr (R lang).",
"dates": [
"2023-10-29"
],
"price": 25
}
Get special event
{
"eventId": "6744a0da-4121-49cd-8479-f8cc20526495",
"name": "Time Traveler Tea Party",
"location": "Temporal Tearoom",
"eventDescription": "Sip tea with important historical figures.",
"dates": [
"2023-11-18",
"2023-11-25",
"2023-12-02"
],
"price": 60
}
Bad request
Not found
Loading...