GET api/Events?eventId={eventId}
Gets details for single event based on eventId
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
EventDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| name | string |
None. |
|
| description_title | string |
None. |
|
| description | string |
None. |
|
| isOpen | boolean |
None. |
|
| seminarNumber | string |
None. |
|
| eventStarts | date |
None. |
|
| eventEnds | date |
None. |
|
| location | string |
None. |
|
| teacher | string |
None. |
|
| picture_url | string |
None. |
|
| subtitle | string |
None. |
|
| registrationStart | date |
None. |
|
| registrationEnd | date |
None. |
|
| cost | Money |
None. |
|
| showOnWeb | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "df7538c8-4851-46dc-a41e-61884c2989bb",
"name": "sample string 2",
"description_title": "sample string 3",
"description": "sample string 4",
"isOpen": true,
"seminarNumber": "sample string 6",
"eventStarts": "2026-02-11T00:28:07.5859903+00:00",
"eventEnds": "2026-02-11T00:28:07.5859903+00:00",
"location": "sample string 9",
"teacher": "sample string 10",
"picture_url": "sample string 11",
"subtitle": "sample string 12",
"registrationStart": "2026-02-11T00:28:07.5859903+00:00",
"registrationEnd": "2026-02-11T00:28:07.5859903+00:00",
"cost": {
"Value": 1.0
},
"showOnWeb": true
}