POST api/meeting/joinmeeting

Request Information

URI Parameters

None.

Body Parameters

JoinMeetingRequest
NameDescriptionTypeAdditional information
MeetingId

string

None.

ParticipantName

string

None.

Environment

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MeetingId": "sample string 1",
  "ParticipantName": "sample string 2",
  "Environment": "sample string 3"
}

application/xml, text/xml

Sample:
<JoinMeetingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models">
  <Environment>sample string 3</Environment>
  <MeetingId>sample string 1</MeetingId>
  <ParticipantName>sample string 2</ParticipantName>
</JoinMeetingRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JoinMeetingResponse
NameDescriptionTypeAdditional information
MeetingKey

string

None.

MeetingName

string

None.

MeetingId

string

None.

MeetingPassword

string

None.

CompanyName

string

None.

LogoUrl

string

None.

VideoUrl

string

None.

RoomKey

string

None.

ParticipantKey

string

None.

Response Formats

application/json, text/json

Sample:
{
  "MeetingKey": "sample string 1",
  "MeetingName": "sample string 2",
  "MeetingId": "sample string 3",
  "MeetingPassword": "sample string 4",
  "CompanyName": "sample string 5",
  "LogoUrl": "sample string 6",
  "VideoUrl": "sample string 7",
  "RoomKey": "sample string 8",
  "ParticipantKey": "sample string 9"
}

application/xml, text/xml

Sample:
<JoinMeetingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models">
  <CompanyName>sample string 5</CompanyName>
  <LogoUrl>sample string 6</LogoUrl>
  <MeetingId>sample string 3</MeetingId>
  <MeetingKey>sample string 1</MeetingKey>
  <MeetingName>sample string 2</MeetingName>
  <MeetingPassword>sample string 4</MeetingPassword>
  <ParticipantKey>sample string 9</ParticipantKey>
  <RoomKey>sample string 8</RoomKey>
  <VideoUrl>sample string 7</VideoUrl>
</JoinMeetingResponse>