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
EventDetailsName | 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": "37f9f16c-9578-4630-9ee9-8df055f63020", "name": "sample string 2", "description_title": "sample string 3", "description": "sample string 4", "isOpen": true, "seminarNumber": "sample string 6", "eventStarts": "2025-04-04T14:47:53.2060112+00:00", "eventEnds": "2025-04-04T14:47:53.2060112+00:00", "location": "sample string 9", "teacher": "sample string 10", "picture_url": "sample string 11", "subtitle": "sample string 12", "registrationStart": "2025-04-04T14:47:53.2060112+00:00", "registrationEnd": "2025-04-04T14:47:53.2060112+00:00", "cost": { "Value": 1.0 }, "showOnWeb": true }