Authorizations
Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Body
application/json
curl --request POST \
--url https://connvo-dev.convex.cloud/api/run/meetings/queries/listMeetingParticipants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"args": {
"meetingId": "meeting_123example"
}
}'{
"status": "success",
"errorMessage": "",
"errorData": {},
"value": [
{
"_id": "participant_123example",
"_creationTime": 1704063600000,
"meetingId": "meeting_123example",
"userId": "user_123example",
"role": "host",
"presence": "joined",
"joinedAt": 1704067200000,
"createdAt": 1704063600000,
"user": {
"_id": "user_123example",
"displayName": "Alice Johnson",
"avatarUrl": "https://example.com/avatars/alice.jpg"
},
"webrtcConnected": true,
"webrtcSessionCount": 1
},
{
"_id": "participant_456example",
"_creationTime": 1704063600000,
"meetingId": "meeting_123example",
"userId": "user_456example",
"role": "participant",
"presence": "joined",
"joinedAt": 1704067300000,
"createdAt": 1704063600000,
"user": {
"_id": "user_456example",
"displayName": "Bob Smith",
"avatarUrl": "https://example.com/avatars/bob.jpg"
},
"webrtcConnected": true,
"webrtcSessionCount": 1
}
]
}and real-time WebRTC connection status. Requires the caller to be a participant in the meeting. Includes WebRTC session count and connection state for each participant.
curl --request POST \
--url https://connvo-dev.convex.cloud/api/run/meetings/queries/listMeetingParticipants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"args": {
"meetingId": "meeting_123example"
}
}'{
"status": "success",
"errorMessage": "",
"errorData": {},
"value": [
{
"_id": "participant_123example",
"_creationTime": 1704063600000,
"meetingId": "meeting_123example",
"userId": "user_123example",
"role": "host",
"presence": "joined",
"joinedAt": 1704067200000,
"createdAt": 1704063600000,
"user": {
"_id": "user_123example",
"displayName": "Alice Johnson",
"avatarUrl": "https://example.com/avatars/alice.jpg"
},
"webrtcConnected": true,
"webrtcSessionCount": 1
},
{
"_id": "participant_456example",
"_creationTime": 1704063600000,
"meetingId": "meeting_123example",
"userId": "user_456example",
"role": "participant",
"presence": "joined",
"joinedAt": 1704067300000,
"createdAt": 1704063600000,
"user": {
"_id": "user_456example",
"displayName": "Bob Smith",
"avatarUrl": "https://example.com/avatars/bob.jpg"
},
"webrtcConnected": true,
"webrtcSessionCount": 1
}
]
}Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Show child attributes