POST api/v1.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-12T10:22:45.4532363Z",
"EndDate": "2025-11-12T10:22:45.4532363Z",
"EventTypeName": "sample string 3",
"CommunityKey": "075f4970-8f41-469e-a959-6d755bd0daba",
"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>075f4970-8f41-469e-a959-6d755bd0daba</CommunityKey> <EndDate>2025-11-12T05:22:45.4532363-05:00</EndDate> <EventTypeName>sample string 3</EventTypeName> <SearchKeywords>sample string 5</SearchKeywords> <StartDate>2025-11-12T05:22:45.4532363-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.