GET api/meet/room/{RoomKey}/{ParticipantKey}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
RoomKey | globally unique identifier |
Required |
|
ParticipantKey | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
RoomDetailName | Description | Type | Additional information |
---|---|---|---|
RoomKey | globally unique identifier |
None. |
|
SessionKey | string |
None. |
|
TokenKey | string |
None. |
|
APIKey | string |
None. |
|
RoomId | string |
None. |
|
ParticipantName | string |
None. |
|
MeetingPhoneNumber | string |
None. |
|
MeetingPhonePassCode | string |
None. |
|
CampaignKey | globally unique identifier |
None. |
|
IsHost | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "RoomKey": "7934887f-cb70-4b02-a448-3ac1728e564c", "SessionKey": "sample string 2", "TokenKey": "sample string 3", "APIKey": "sample string 4", "RoomId": "sample string 5", "ParticipantName": "sample string 6", "MeetingPhoneNumber": "sample string 7", "MeetingPhonePassCode": "sample string 8", "CampaignKey": "c1e327f0-657e-4c75-8b93-ef14f4eae9c6", "IsHost": true }
application/xml, text/xml
Sample:
<RoomDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.App_Code"> <APIKey>sample string 4</APIKey> <CampaignKey>c1e327f0-657e-4c75-8b93-ef14f4eae9c6</CampaignKey> <IsHost>true</IsHost> <MeetingPhoneNumber>sample string 7</MeetingPhoneNumber> <MeetingPhonePassCode>sample string 8</MeetingPhonePassCode> <ParticipantName>sample string 6</ParticipantName> <RoomId>sample string 5</RoomId> <RoomKey>7934887f-cb70-4b02-a448-3ac1728e564c</RoomKey> <SessionKey>sample string 2</SessionKey> <TokenKey>sample string 3</TokenKey> </RoomDetail>