GET api/meet/room/{RoomKey}/{ParticipantKey}
Returns the full detail of a meeting room for a participant: session and token information to join the call, the participant's name and host flag, dial-in phone number and passcode, the meeting checklist, and the AI meeting summaries recorded for the campaign.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RoomKey |
Unique key of the meeting room. |
globally unique identifier |
Required |
| ParticipantKey |
Key of the participant requesting the detail; determines ParticipantName and IsHost in the response. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
A RoomDetail with session/token/API keys, room id, campaign key, participant info, meeting phone number and passcode, Checklist, and MeetingAssistantSummaries.
RoomDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| RoomKey |
Unique key of the meeting room. |
globally unique identifier |
None. |
| SessionKey |
Video session identifier used to join the call. |
string |
None. |
| TokenKey |
Access token for the video session. |
string |
None. |
| APIKey |
Video platform API key for the session. |
string |
None. |
| RoomId |
Short numeric room identifier (room sequence). |
string |
None. |
| ParticipantName |
Display name of the requesting participant. |
string |
None. |
| MeetingPhoneNumber |
Dial-in conference phone number for audio-only attendees. |
string |
None. |
| MeetingPhonePassCode |
Passcode for the dial-in phone number. |
string |
None. |
| CampaignKey |
Campaign the room belongs to. |
globally unique identifier |
None. |
| IsHost |
True when the requesting participant is the meeting host. |
boolean |
None. |
| Checklist |
Latest status of every action item tracked for the campaign's meetings. |
Collection of MeetingChecklist |
None. |
| MeetingAssistantSummaries |
Most recent AI meeting summary, with previous/next room keys for navigating the campaign's meeting history. |
Collection of MeetingAssistantSummary |
None. |
Response Formats
application/json, text/json
{
"RoomKey": "195ba0e3-5ca6-4a96-8706-4430de91c4c9",
"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": "92d2a62e-b566-43a5-9c26-afe3ada3af85",
"IsHost": true,
"Checklist": [
{
"CheckListItem": "sample string 1",
"status": 2,
"Checklistnanoid": "sample string 3",
"statusname": "sample string 4",
"owner": "sample string 5",
"CreatedOn": "2026-07-31T02:27:11.5155506+00:00",
"CompleteDate": "2026-07-31T02:27:11.5155506+00:00"
},
{
"CheckListItem": "sample string 1",
"status": 2,
"Checklistnanoid": "sample string 3",
"statusname": "sample string 4",
"owner": "sample string 5",
"CreatedOn": "2026-07-31T02:27:11.5155506+00:00",
"CompleteDate": "2026-07-31T02:27:11.5155506+00:00"
}
],
"MeetingAssistantSummaries": [
{
"Title": "sample string 1",
"Summary": "sample string 2",
"createdon": "2026-07-31T02:27:11.5155506+00:00",
"MeetingDate": "2026-07-31T02:27:11.5155506+00:00",
"SummaryObjective": "sample string 5",
"PrevRoomKey": "sample string 6",
"NextRoomKey": "sample string 7",
"CurrentRoomKey": "sample string 8"
},
{
"Title": "sample string 1",
"Summary": "sample string 2",
"createdon": "2026-07-31T02:27:11.5155506+00:00",
"MeetingDate": "2026-07-31T02:27:11.5155506+00:00",
"SummaryObjective": "sample string 5",
"PrevRoomKey": "sample string 6",
"NextRoomKey": "sample string 7",
"CurrentRoomKey": "sample string 8"
}
]
}
application/xml, text/xml
<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>92d2a62e-b566-43a5-9c26-afe3ada3af85</CampaignKey>
<Checklist>
<MeetingChecklist>
<CheckListItem>sample string 1</CheckListItem>
<Checklistnanoid>sample string 3</Checklistnanoid>
<CompleteDate>2026-07-31T02:27:11.5155506+00:00</CompleteDate>
<CreatedOn>2026-07-31T02:27:11.5155506+00:00</CreatedOn>
<owner>sample string 5</owner>
<status>2</status>
<statusname>sample string 4</statusname>
</MeetingChecklist>
<MeetingChecklist>
<CheckListItem>sample string 1</CheckListItem>
<Checklistnanoid>sample string 3</Checklistnanoid>
<CompleteDate>2026-07-31T02:27:11.5155506+00:00</CompleteDate>
<CreatedOn>2026-07-31T02:27:11.5155506+00:00</CreatedOn>
<owner>sample string 5</owner>
<status>2</status>
<statusname>sample string 4</statusname>
</MeetingChecklist>
</Checklist>
<IsHost>true</IsHost>
<MeetingAssistantSummaries>
<MeetingAssistantSummary>
<CurrentRoomKey>sample string 8</CurrentRoomKey>
<MeetingDate>2026-07-31T02:27:11.5155506+00:00</MeetingDate>
<NextRoomKey>sample string 7</NextRoomKey>
<PrevRoomKey>sample string 6</PrevRoomKey>
<Summary>sample string 2</Summary>
<SummaryObjective>sample string 5</SummaryObjective>
<Title>sample string 1</Title>
<createdon>2026-07-31T02:27:11.5155506+00:00</createdon>
</MeetingAssistantSummary>
<MeetingAssistantSummary>
<CurrentRoomKey>sample string 8</CurrentRoomKey>
<MeetingDate>2026-07-31T02:27:11.5155506+00:00</MeetingDate>
<NextRoomKey>sample string 7</NextRoomKey>
<PrevRoomKey>sample string 6</PrevRoomKey>
<Summary>sample string 2</Summary>
<SummaryObjective>sample string 5</SummaryObjective>
<Title>sample string 1</Title>
<createdon>2026-07-31T02:27:11.5155506+00:00</createdon>
</MeetingAssistantSummary>
</MeetingAssistantSummaries>
<MeetingPhoneNumber>sample string 7</MeetingPhoneNumber>
<MeetingPhonePassCode>sample string 8</MeetingPhonePassCode>
<ParticipantName>sample string 6</ParticipantName>
<RoomId>sample string 5</RoomId>
<RoomKey>195ba0e3-5ca6-4a96-8706-4430de91c4c9</RoomKey>
<SessionKey>sample string 2</SessionKey>
<TokenKey>sample string 3</TokenKey>
</RoomDetail>