GET v1/Events/{productId}/Sponsors?includeSessionSponsors={includeSessionSponsors}&sort={sort}
Retrieves the details of Sponsers for a particular meeting
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
productId | integer |
Required |
|
includeSessionSponsors |
If true then this will both event sponsor and its session's sponsor details. Otherwise only event sponsor details included |
boolean |
Default value is False |
sort |
A comma delimited list of columns to sort by. Field are sorted in ascending order by default. To have a field sort in descending order, preface it with the minus (-) sign. |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of EventSponsorDetailsName | Description | Type | Additional information |
---|---|---|---|
eventId |
product id of an event. |
integer |
None. |
name |
Sponsor of an event. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "eventId": 1, "name": "sample string 2" }, { "eventId": 1, "name": "sample string 2" } ]
text/html
Sample:
[{"eventId":1,"name":"sample string 2"},{"eventId":1,"name":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfv1_Events_EventsEndpointController.EventSponsorDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_Events_EventsEndpoint"> <v1_Events_EventsEndpointController.EventSponsorDetails> <eventId>1</eventId> <name>sample string 2</name> </v1_Events_EventsEndpointController.EventSponsorDetails> <v1_Events_EventsEndpointController.EventSponsorDetails> <eventId>1</eventId> <name>sample string 2</name> </v1_Events_EventsEndpointController.EventSponsorDetails> </ArrayOfv1_Events_EventsEndpointController.EventSponsorDetails>