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": "c25ddb78-819a-4d62-ab1d-c036789fb25e", "name": "sample string 2", "description_title": "sample string 3", "description": "sample string 4", "isOpen": true, "seminarNumber": "sample string 6", "eventStarts": "2025-07-03T11:26:41.968799+00:00", "eventEnds": "2025-07-03T11:26:41.968799+00:00", "location": "sample string 9", "teacher": "sample string 10", "picture_url": "sample string 11", "subtitle": "sample string 12", "registrationStart": "2025-07-03T11:26:41.968799+00:00", "registrationEnd": "2025-07-03T11:26:41.968799+00:00", "cost": { "Value": 1.0 }, "showOnWeb": true }