GET v1/Events/{productId}/Speakers?includeSessionSpeakers={includeSessionSpeakers}&sort={sort}

Retrieves the details of Speakers for a particular event

Request Information

URI Parameters

NameDescriptionTypeAdditional information
productId

integer

Required

includeSessionSpeakers

If true then this will both event speaker and its session's speaker details. Otherwise only event speaker 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 EventSpeakerDetails
NameDescriptionTypeAdditional information
eventId

product id of an event.

integer

None.

name

Speaker of an event

string

None.

companyName

companyName of Speaker

string

None.

title

Title of Speaker like Primary Speaker

string

None.

type

Type of Speaker like Regular,Panelist

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "eventId": 1,
    "name": "sample string 2",
    "companyName": "sample string 3",
    "title": "sample string 4",
    "type": "sample string 5"
  },
  {
    "eventId": 1,
    "name": "sample string 2",
    "companyName": "sample string 3",
    "title": "sample string 4",
    "type": "sample string 5"
  }
]

text/html

Sample:
[{"eventId":1,"name":"sample string 2","companyName":"sample string 3","title":"sample string 4","type":"sample string 5"},{"eventId":1,"name":"sample string 2","companyName":"sample string 3","title":"sample string 4","type":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfv1_Events_EventsEndpointController.EventSpeakerDetails 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.EventSpeakerDetails>
    <companyName>sample string 3</companyName>
    <eventId>1</eventId>
    <name>sample string 2</name>
    <title>sample string 4</title>
    <type>sample string 5</type>
  </v1_Events_EventsEndpointController.EventSpeakerDetails>
  <v1_Events_EventsEndpointController.EventSpeakerDetails>
    <companyName>sample string 3</companyName>
    <eventId>1</eventId>
    <name>sample string 2</name>
    <title>sample string 4</title>
    <type>sample string 5</type>
  </v1_Events_EventsEndpointController.EventSpeakerDetails>
</ArrayOfv1_Events_EventsEndpointController.EventSpeakerDetails>