GET api/Event/Get/{id}
returns a event details of the event for the given id if the event is bookable
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
EventModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Begin |
The begin of the event |
date |
None. |
| End |
The end of the event |
date |
None. |
| ArrivalOn |
The desired arrival of the event participants |
date |
None. |
| Name |
The name of the event |
string |
None. |
| EventCategoryId |
Internal id of the event category |
integer |
None. |
| LocationId |
Internal id of the event location |
integer |
None. |
| NumberOfBookablePlacesAvailable |
the number of places that can be booked in the event. |
integer |
None. |
| DefaultGrossPrice |
the default gross price (incl. vat) for public customers |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Begin": "2026-08-16T09:02:26.2964653+02:00",
"End": "2026-08-16T09:02:26.2964653+02:00",
"ArrivalOn": "2026-08-16T09:02:26.2964653+02:00",
"Name": "sample string 4",
"EventCategoryId": 5,
"LocationId": 6,
"NumberOfBookablePlacesAvailable": 7,
"DefaultGrossPrice": 8.0
}
application/xml, text/xml
Sample:
<EventModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BKPBooking.WebBookingApi.Models"> <ArrivalOn>2026-08-16T09:02:26.2964653+02:00</ArrivalOn> <Begin>2026-08-16T09:02:26.2964653+02:00</Begin> <DefaultGrossPrice>8</DefaultGrossPrice> <End>2026-08-16T09:02:26.2964653+02:00</End> <EventCategoryId>5</EventCategoryId> <Id>1</Id> <LocationId>6</LocationId> <Name>sample string 4</Name> <NumberOfBookablePlacesAvailable>7</NumberOfBookablePlacesAvailable> </EventModel>