POST api/v2.0/Events/SearchEvents?maxRecords={maxRecords}
Get Event details. The retrieved Events can be filtered by the values passed in the eventFilter parameter.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| maxRecords |
Specify the maximum number of records to return. Defaults to 100 if not specified. |
integer |
Default value is 100 |
Body Parameters
Allows filtering of the Events that are returned.
CalendarEventRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| EventTypeName | string |
None. |
|
| CommunityKey | globally unique identifier |
None. |
|
| SearchKeywords | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StartDate": "2025-11-12T09:44:47.4050412Z",
"EndDate": "2025-11-12T09:44:47.4050412Z",
"EventTypeName": "sample string 3",
"CommunityKey": "75545d72-c168-47c9-93c1-866af3c8b001",
"SearchKeywords": "sample string 5"
}
application/xml, text/xml
Sample:
<CalendarEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Request"> <CommunityKey>75545d72-c168-47c9-93c1-866af3c8b001</CommunityKey> <EndDate>2025-11-12T04:44:47.4050412-05:00</EndDate> <EventTypeName>sample string 3</EventTypeName> <SearchKeywords>sample string 5</SearchKeywords> <StartDate>2025-11-12T04:44:47.4050412-05:00</StartDate> </CalendarEventRequest>
Response Information
Resource Description
List of Events.
Collection of Event| Name | Description | Type | Additional information |
|---|---|---|---|
| RegistrationOptions | Collection of EventOption |
None. |
|
| Sessions |
None. |
Response Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.