PUT api/Conference/GetSpeakers

Request Information

URI Parameters

None.

Body Parameters

APISpeakerRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

SeminarId

integer

None.

SpeakerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "SeminarId": 2,
  "SpeakerId": 3,
  "UniqueId": "ca6f79aa-87fd-432a-90e8-c62b915d888c",
  "UserUniqueId": 5
}

application/xml, text/xml

Sample:
<APISpeakerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <SeminarId>2</SeminarId>
  <SpeakerId>3</SpeakerId>
  <UniqueId>ca6f79aa-87fd-432a-90e8-c62b915d888c</UniqueId>
  <UserUniqueId>5</UserUniqueId>
</APISpeakerRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of APISpeakerResponseList
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Title

string

None.

CompanyName

string

None.

IsAlreadyInFav

boolean

None.

ProfilePhoto

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Title": "sample string 3",
    "CompanyName": "sample string 4",
    "IsAlreadyInFav": true,
    "ProfilePhoto": "sample string 6",
    "Description": "sample string 7"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Title": "sample string 3",
    "CompanyName": "sample string 4",
    "IsAlreadyInFav": true,
    "ProfilePhoto": "sample string 6",
    "Description": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAPISpeakerResponseList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <APISpeakerResponseList>
    <CompanyName>sample string 4</CompanyName>
    <Description>sample string 7</Description>
    <Id>1</Id>
    <IsAlreadyInFav>true</IsAlreadyInFav>
    <Name>sample string 2</Name>
    <ProfilePhoto>sample string 6</ProfilePhoto>
    <Title>sample string 3</Title>
  </APISpeakerResponseList>
  <APISpeakerResponseList>
    <CompanyName>sample string 4</CompanyName>
    <Description>sample string 7</Description>
    <Id>1</Id>
    <IsAlreadyInFav>true</IsAlreadyInFav>
    <Name>sample string 2</Name>
    <ProfilePhoto>sample string 6</ProfilePhoto>
    <Title>sample string 3</Title>
  </APISpeakerResponseList>
</ArrayOfAPISpeakerResponseList>