GET api/Events?eventId={eventId}

Gets details for single event based on eventId

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

EventDetails
NameDescriptionTypeAdditional 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": "419ceb28-a3db-4b90-b620-f7bd5f06702d",
  "name": "sample string 2",
  "description_title": "sample string 3",
  "description": "sample string 4",
  "isOpen": true,
  "seminarNumber": "sample string 6",
  "eventStarts": "2024-04-25T17:25:12.7371927+00:00",
  "eventEnds": "2024-04-25T17:25:12.7371927+00:00",
  "location": "sample string 9",
  "teacher": "sample string 10",
  "picture_url": "sample string 11",
  "subtitle": "sample string 12",
  "registrationStart": "2024-04-25T17:25:12.7371927+00:00",
  "registrationEnd": "2024-04-25T17:25:12.7371927+00:00",
  "cost": {
    "Value": 1.0
  },
  "showOnWeb": true
}