GET associations({associationId})/events/sponsors

Gets all event sponsors in an association

Request Information

Parameters

NameDescriptionAdditional information
associationId
association of interest

Define this parameter in the request URI.

Response Information

Bunch of sponsors

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "EventId": 2
  },
  {
    "Id": 1,
    "EventId": 2
  },
  {
    "Id": 1,
    "EventId": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventSponsorResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
  <EventSponsorResource>
    <EventId>2</EventId>
    <Id>1</Id>
  </EventSponsorResource>
  <EventSponsorResource>
    <EventId>2</EventId>
    <Id>1</Id>
  </EventSponsorResource>
  <EventSponsorResource>
    <EventId>2</EventId>
    <Id>1</Id>
  </EventSponsorResource>
</ArrayOfEventSponsorResource>

text/csv

Sample:
Id,EventId
"1","2"
"1","2"
"1","2"