GET v1/admin/company/{id}/Events/{productId}/Speakers?includeSessionSpeakers={includeSessionSpeakers}&sort={sort}
Retrieves the Speaker Information for a associated event including its speaker and company name
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| 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 SingleAdminEventSpeaker| Name | Description | Type | Additional 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_Admin_CompanyEndpointController.SingleAdminEventSpeaker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_Admin_CompanyEndpoint">
<v1_Admin_CompanyEndpointController.SingleAdminEventSpeaker>
<companyName>sample string 3</companyName>
<eventId>1</eventId>
<name>sample string 2</name>
<title>sample string 4</title>
<type>sample string 5</type>
</v1_Admin_CompanyEndpointController.SingleAdminEventSpeaker>
<v1_Admin_CompanyEndpointController.SingleAdminEventSpeaker>
<companyName>sample string 3</companyName>
<eventId>1</eventId>
<name>sample string 2</name>
<title>sample string 4</title>
<type>sample string 5</type>
</v1_Admin_CompanyEndpointController.SingleAdminEventSpeaker>
</ArrayOfv1_Admin_CompanyEndpointController.SingleAdminEventSpeaker>