GET associations({associationId})/events/featured

Method to get featured events

Request Information

Parameters

NameDescriptionAdditional 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-04-20T04:27:45.3129379-05:00"
  },
  {
    "EventID": 1,
    "DisplayIdx": 2,
    "ExpDate": "2024-04-20T04:27:45.3129379-05:00"
  },
  {
    "EventID": 1,
    "DisplayIdx": 2,
    "ExpDate": "2024-04-20T04:27:45.3129379-05: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-04-20T04:27:45.3129379-05:00</ExpDate>
  </FeaturedEventResource>
  <FeaturedEventResource>
    <DisplayIdx>2</DisplayIdx>
    <EventID>1</EventID>
    <ExpDate>2024-04-20T04:27:45.3129379-05:00</ExpDate>
  </FeaturedEventResource>
  <FeaturedEventResource>
    <DisplayIdx>2</DisplayIdx>
    <EventID>1</EventID>
    <ExpDate>2024-04-20T04:27:45.3129379-05:00</ExpDate>
  </FeaturedEventResource>
</ArrayOfFeaturedEventResource>

text/csv

Sample:
EventID,DisplayIdx,ExpDate
"1","2","4/20/2024 4:27:45 AM"
"1","2","4/20/2024 4:27:45 AM"
"1","2","4/20/2024 4:27:45 AM"