GET api/events/search?searchFilter={searchFilter}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| searchFilter | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.Event.Search| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | Collection of BO.Models.Event.Search |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": [
{
"sportId": 1,
"sportName": "sample string 2",
"countryId": 3,
"countryName": "sample string 4",
"tournamentId": 5,
"tournamentName": "sample string 6",
"eventId": 7,
"eventName": "sample string 8",
"eventNumber": 9,
"eventDateTime": "2025-12-15T11:54:27.4556374+02:00"
},
{
"sportId": 1,
"sportName": "sample string 2",
"countryId": 3,
"countryName": "sample string 4",
"tournamentId": 5,
"tournamentName": "sample string 6",
"eventId": 7,
"eventName": "sample string 8",
"eventNumber": 9,
"eventDateTime": "2025-12-15T11:54:27.4556374+02:00"
}
],
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfListOfSearch xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<Search>
<SportId>1</SportId>
<SportName>sample string 2</SportName>
<CountryId>3</CountryId>
<CountryName>sample string 4</CountryName>
<TournamentId>5</TournamentId>
<TournamentName>sample string 6</TournamentName>
<EventId>7</EventId>
<EventName>sample string 8</EventName>
<EventNumber>9</EventNumber>
<EventDateTime>2025-12-15T11:54:27.4556374+02:00</EventDateTime>
</Search>
<Search>
<SportId>1</SportId>
<SportName>sample string 2</SportName>
<CountryId>3</CountryId>
<CountryName>sample string 4</CountryName>
<TournamentId>5</TournamentId>
<TournamentName>sample string 6</TournamentName>
<EventId>7</EventId>
<EventName>sample string 8</EventName>
<EventNumber>9</EventNumber>
<EventDateTime>2025-12-15T11:54:27.4556374+02:00</EventDateTime>
</Search>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfListOfSearch>