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-12-13T17:46:19.5827275-06:00"
},
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2025-12-13T17:46:19.5827275-06:00"
},
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2025-12-13T17:46:19.5827275-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-12-13T17:46:19.5827275-06:00</ExpDate>
</FeaturedEventResource>
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2025-12-13T17:46:19.5827275-06:00</ExpDate>
</FeaturedEventResource>
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2025-12-13T17:46:19.5827275-06:00</ExpDate>
</FeaturedEventResource>
</ArrayOfFeaturedEventResource>
text/csv
Sample:
EventID,DisplayIdx,ExpDate "1","2","12/13/2025 5:46:19 PM" "1","2","12/13/2025 5:46:19 PM" "1","2","12/13/2025 5:46:19 PM"