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": "2026-01-26T12:15:44.6294812-06:00"
},
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2026-01-26T12:15:44.6294812-06:00"
},
{
"EventID": 1,
"DisplayIdx": 2,
"ExpDate": "2026-01-26T12:15:44.6294812-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>2026-01-26T12:15:44.6294812-06:00</ExpDate>
</FeaturedEventResource>
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2026-01-26T12:15:44.6294812-06:00</ExpDate>
</FeaturedEventResource>
<FeaturedEventResource>
<DisplayIdx>2</DisplayIdx>
<EventID>1</EventID>
<ExpDate>2026-01-26T12:15:44.6294812-06:00</ExpDate>
</FeaturedEventResource>
</ArrayOfFeaturedEventResource>
text/csv
Sample:
EventID,DisplayIdx,ExpDate "1","2","1/26/2026 12:15:44 PM" "1","2","1/26/2026 12:15:44 PM" "1","2","1/26/2026 12:15:44 PM"