GET api/Events/EventAssociations?primarySeries={primarySeries}&primarySeason={primarySeason}&secondarySeries={secondarySeries}&secondarySeason={secondarySeason}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
primarySeries

string

Required

primarySeason

string

Required

secondarySeries

string

Required

secondarySeason

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EventAssociationResponse
NameDescriptionTypeAdditional information
EventId

integer

None.

EventIdCSV

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EventId": 1,
    "EventIdCSV": "sample string 2"
  },
  {
    "EventId": 1,
    "EventIdCSV": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventAssociationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBR_API.Models">
  <EventAssociationResponse>
    <EventId>1</EventId>
    <EventIdCSV>sample string 2</EventIdCSV>
  </EventAssociationResponse>
  <EventAssociationResponse>
    <EventId>1</EventId>
    <EventIdCSV>sample string 2</EventIdCSV>
  </EventAssociationResponse>
</ArrayOfEventAssociationResponse>