GET associations({associationId})/events/featured
Method to get featured events
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| associationId | Association of interest |
Define this parameter in the request URI. |
Response Information
Bunch of featured events
Response body formats
application/json, text/json
Sample:
[
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2025-11-21T08:11:09.5951708-06:00"
},
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2025-11-21T08:11:09.5951708-06:00"
},
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2025-11-21T08:11:09.5951708-06:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfFeaturedEventResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2025-11-21T08:11:09.5951708-06:00</ExpDate>
</FeaturedEventResource>
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2025-11-21T08:11:09.5951708-06:00</ExpDate>
</FeaturedEventResource>
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2025-11-21T08:11:09.5951708-06:00</ExpDate>
</FeaturedEventResource>
</ArrayOfFeaturedEventResource>
text/csv
Sample:
EventID,DisplayIdx,ExpDate "1","2","11/21/2025 8:11:09 AM" "1","2","11/21/2025 8:11:09 AM" "1","2","11/21/2025 8:11:09 AM"