GET api/Event/Get
returns a list of all bookable events
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of 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.2495939+02:00",
"End": "2026-08-16T09:02:26.2495939+02:00",
"ArrivalOn": "2026-08-16T09:02:26.2495939+02:00",
"Name": "sample string 4",
"EventCategoryId": 5,
"LocationId": 6,
"NumberOfBookablePlacesAvailable": 7,
"DefaultGrossPrice": 8.0
},
{
"Id": 1,
"Begin": "2026-08-16T09:02:26.2495939+02:00",
"End": "2026-08-16T09:02:26.2495939+02:00",
"ArrivalOn": "2026-08-16T09:02:26.2495939+02:00",
"Name": "sample string 4",
"EventCategoryId": 5,
"LocationId": 6,
"NumberOfBookablePlacesAvailable": 7,
"DefaultGrossPrice": 8.0
}
]
application/xml, text/xml
Sample:
<ArrayOfEventModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BKPBooking.WebBookingApi.Models">
<EventModel>
<ArrivalOn>2026-08-16T09:02:26.2495939+02:00</ArrivalOn>
<Begin>2026-08-16T09:02:26.2495939+02:00</Begin>
<DefaultGrossPrice>8</DefaultGrossPrice>
<End>2026-08-16T09:02:26.2495939+02:00</End>
<EventCategoryId>5</EventCategoryId>
<Id>1</Id>
<LocationId>6</LocationId>
<Name>sample string 4</Name>
<NumberOfBookablePlacesAvailable>7</NumberOfBookablePlacesAvailable>
</EventModel>
<EventModel>
<ArrivalOn>2026-08-16T09:02:26.2495939+02:00</ArrivalOn>
<Begin>2026-08-16T09:02:26.2495939+02:00</Begin>
<DefaultGrossPrice>8</DefaultGrossPrice>
<End>2026-08-16T09:02:26.2495939+02:00</End>
<EventCategoryId>5</EventCategoryId>
<Id>1</Id>
<LocationId>6</LocationId>
<Name>sample string 4</Name>
<NumberOfBookablePlacesAvailable>7</NumberOfBookablePlacesAvailable>
</EventModel>
</ArrayOfEventModel>