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": "2024-11-21T12:25:50.6634226-06:00" }, { "EventID": 1, "DisplayIdx": 2, "ExpDate": "2024-11-21T12:25:50.6634226-06:00" }, { "EventID": 1, "DisplayIdx": 2, "ExpDate": "2024-11-21T12:25:50.6634226-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>2024-11-21T12:25:50.6634226-06:00</ExpDate> </FeaturedEventResource> <FeaturedEventResource> <DisplayIdx>2</DisplayIdx> <EventID>1</EventID> <ExpDate>2024-11-21T12:25:50.6634226-06:00</ExpDate> </FeaturedEventResource> <FeaturedEventResource> <DisplayIdx>2</DisplayIdx> <EventID>1</EventID> <ExpDate>2024-11-21T12:25:50.6634226-06:00</ExpDate> </FeaturedEventResource> </ArrayOfFeaturedEventResource>
text/csv
Sample:
EventID,DisplayIdx,ExpDate "1","2","11/21/2024 12:25:50 PM" "1","2","11/21/2024 12:25:50 PM" "1","2","11/21/2024 12:25:50 PM"